FEDLibrary Git
Brought to you by:
drakan
------------------- FEDLibrary (LGPLv3) ------------------- A portable c++ library for common use. * How to build and install ------------------------ - Requirements: - cmake ## Download source code from www.sf.net $ git clone git://git.code.sf.net/p/fedlibrary/git fedlibrary $ cd fedlibrary ## Create building folder $ mkdir build $ cd build ## Run creating building scripts $ cmake ../ ## Build library both shared and static version will be created. $ make ## Installa library, you must be root or sudoers $ sudo make install - Note: - by default following the steps above you will build the library in release versioni, it is possible to add debug information just using cmake definition CMAKE_BUILD_TYPE=Debug $ cd build $ cmake -DCMAKE_BUILD_TYPE=Debug ../ $ make