Warning, /sdk/kdesvn/INSTALL-cmake is written in an unsupported language. File is not indexed.
0001 Prepare install 0002 =============== 0003 You require at least cmake 2.8.12, kde 4.9 and subversion 1.4. In source-tree-build are mostly unwanted, so 0004 make a subdir called "kdesvn-build" and change to it. 0005 0006 Basic installation 0007 ================== 0008 Change to your builddirectory and call cmake with the path to kdesvn. E.g., 0009 when your build-folder is "kdesvn-build" within source-tree, so change to it 0010 and type "cmake ../". 0011 0012 Now your system get checked if it is able compiling kdesvn and cmake generates 0013 the Makefiles. 0014 Important parameters to cmake: 0015 0016 -DCMAKE_BUILD_TYPE=<buildtype> 0017 <buildtype> may current one of "Debug", "Release", "ReleaseWithDebInfo" 0018 or "MinSizeRel" 0019 0020 -DCMAKE_INSTALL_PREFIX=<prefix> 0021 Default to "/usr/local" 0022 0023 -DSUBVERSION_INSTALL_PATH=<subversionlib-install-prefix> 0024 Where is subversion-lib installed if not in default path. Default check in /usr and /usr/local 0025 0026 -DCMAKE_CXX_FLAGS=<some extra flags> 0027 Extra flags for the c++ compiler for your system required. 0028 0029 After calling cmake just type 0030 make 0031 and build begins. When more output is wanted call 0032 make VERBOSE=1 0033 0034 After make type "make install" and install begins. 0035 0036 You may install to a temporary-root with 0037 make install DESTDIR=<temproot> 0038 0039 If you want to uninstall kdesvn again type "make uninstall" from within the 0040 build directory. 0041 0042 Extra cflags and linker flags 0043 ============================= 0044 0045 If you require extra flags for compiler and linker you may give them via environment variables 0046 "CXXFLAGS" (c++ compiler) 0047 "LDFLAGS" (for linker) 0048 "CFLAGS" (for c-compiler, not needed in kdesvn build)