Page 1 of 1

Best way to Manage Multiplatform Projects with CodeLite

Posted: Wed May 01, 2013 6:34 pm
by evstevemd
I have been developing with CodeLite and Ubuntu and I want to port the same app to windows.
I use a lot of libraries which means different compile flags in windows for some libraries.

How can I use CodeLite in such cases?

Re: Best way to Manage Multiplatform Projects with CodeLite

Posted: Wed May 01, 2013 9:20 pm
by eranif
create different _workspace_ configurations followed by different project configurations.

Atm by default, codelite is creating 2 workspace configurations:

Debug and Release

Each workspace configuration is associated with the proper project configuration

Lets assume you have 2 projects, A and B:

Workspace config:

Code: Select all

Debug -> Project A (Debug), Project B (Debug)
Release -> Project A (Release), Project B (Release)
All you need to do is to add new workspace configuration and create new project configurations for them
Look here for more details:

http://codelite.org/LiteEditor/ConfigurationManager

Eran

Re: Best way to Manage Multiplatform Projects with CodeLite

Posted: Wed May 01, 2013 9:36 pm
by evstevemd
Perfect solution.
Thank you!