Best way to Manage Multiplatform Projects with CodeLite

General questions regarding the usage of CodeLite
evstevemd
CodeLite Guru
Posts: 352
Joined: Sun Nov 29, 2009 7:36 pm
Genuine User: Yes
IDE Question: C++
Contact:

Best way to Manage Multiplatform Projects with CodeLite

Post 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?

CodeLite 15.x
CodeLite is awesome, I just Love it!

User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Best way to Manage Multiplatform Projects with CodeLite

Post 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
Make sure you have read the HOW TO POST thread
evstevemd
CodeLite Guru
Posts: 352
Joined: Sun Nov 29, 2009 7:36 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Best way to Manage Multiplatform Projects with CodeLite

Post by evstevemd »

Perfect solution.
Thank you!

CodeLite 15.x
CodeLite is awesome, I just Love it!

Post Reply