Warning, /sdk/ktechlab/INSTALL is written in an unsupported language. File is not indexed.
0001 Basic Installation 0002 ================== 0003 0004 These are generic installation instructions. 0005 0006 cmake doesn't produce any output into the source directory, by default. 0007 Instead it uses extra build directories for that. (This makes the 0008 make clean procedure obsolete, because you only have to remove the build dir) 0009 0010 To compile this project, simply create a build dir: 0011 0012 mkdir build 0013 0014 #cd into the build dir 0015 cd build 0016 0017 #run cmake to do the "configure magic" 0018 #(yes, the two dots point to the source dir) 0019 cmake .. 0020 0021 #make 0022 make 0023 0024 #and make install 0025 make install 0026 0027 0028 Compilers and Options 0029 ===================== 0030 0031 Compiler options can be set via ccmake or directly as a command-line option 0032 for cmake. The most easy way would be to use ccmake. 0033 0034 To compile in debug symbols use: 0035 0036 cmake -DCMAKE_BUILD_TYPE=debug .. 0037 0038 Installation Names 0039 ================== 0040 0041 By default, `make install' will install the package's files in 0042 `/usr/local/bin', `/usr/local/man', etc. You can specify an 0043 installation prefix other than `/usr/local' by giving `cmake' the 0044 option `-DCMAKE_INSTALL_PREFIX=PATH'. 0045 0046 Optional Features 0047 ================= 0048 0049 {TODO} 0050 0051 Operation Controls 0052 ================== 0053 0054 Some interesting cmake variables include: 0055 0056 -DCMAKE_VERBOSE_MAKEFILE=ON 0057 This makes cmake to create verbose Makefiles to see options given 0058 to gcc and friends