configure && make && make install

General questions regarding the usage of CodeLite
strx
CodeLite Curious
Posts: 2
Joined: Mon Apr 20, 2015 12:46 pm
Genuine User: Yes
IDE Question: C++
Contact:

configure && make && make install

Post by strx »

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.
User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: configure && make && make install

Post by eranif »

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
Make sure you have read the HOW TO POST thread
strx
CodeLite Curious
Posts: 2
Joined: Mon Apr 20, 2015 12:46 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: configure && make && make install

Post by strx »

Thanks for reply eranif, is there some documentation or ready to use material to reach this goal?

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

Re: configure && make && make install

Post by eranif »

Just google for CMake, nothing special

Eran
Make sure you have read the HOW TO POST thread
Post Reply