Page 1 of 1

configure && make && make install

Posted: Mon Apr 20, 2015 12:53 pm
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.

Re: configure && make && make install

Posted: Mon Apr 20, 2015 12:57 pm
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

Re: configure && make && make install

Posted: Mon Apr 20, 2015 1:10 pm
by strx
Thanks for reply eranif, is there some documentation or ready to use material to reach this goal?

Francesco.

Re: configure && make && make install

Posted: Thu Apr 23, 2015 12:08 pm
by eranif
Just google for CMake, nothing special

Eran