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?
Best way to Manage Multiplatform Projects with CodeLite
-
- 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
CodeLite 15.x
CodeLite is awesome, I just Love it!
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Best way to Manage Multiplatform Projects with CodeLite
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:
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
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)
Look here for more details:
http://codelite.org/LiteEditor/ConfigurationManager
Eran
Make sure you have read the HOW TO POST thread
-
- 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
Perfect solution.
Thank you!
Thank you!
CodeLite 15.x
CodeLite is awesome, I just Love it!