Hi, I'm planning to switch from KDevelop to Codelite so I'm trying it.
I develop C++ linux .so libraries and I can't understand how to easily deploy them once builded; in KDevelop it's a configure && make && make install, how can I reach the same result with Codelite?
Thanks very much, keep up the good work, Francesco.
configure && make && make install
-
- CodeLite Curious
- Posts: 2
- Joined: Mon Apr 20, 2015 12:46 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: configure && make && make install
Its up to you.
When using CodeLite built-in Makefiles, you don't have the "install" target, just plain Makefiles to build your .so libraries.
I myself, am using CMake for building on Linux, this include an "install" target + additional option to generate installers (.deb etc)
Eran
When using CodeLite built-in Makefiles, you don't have the "install" target, just plain Makefiles to build your .so libraries.
I myself, am using CMake for building on Linux, this include an "install" target + additional option to generate installers (.deb etc)
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 2
- Joined: Mon Apr 20, 2015 12:46 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: configure && make && make install
Thanks for reply eranif, is there some documentation or ready to use material to reach this goal?
Francesco.
Francesco.
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: configure && make && make install
Just google for CMake, nothing special
Eran
Eran
Make sure you have read the HOW TO POST thread