diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2013-05-04 21:39:27 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2013-05-04 21:39:27 +0000 |
commit | fec6336699f34758d3e6cb41b2edf902fedb9035 (patch) | |
tree | 8256c1dbf3ca7c9e58a3dbecf07cf826fb2e0ce2 /README.cmake | |
parent | 7dbffd7e2b0067e834801617c5c486e3177f6709 (diff) | |
download | libical-master.tar.gz |
libical-1.0HEADlibical-1.0master
Diffstat (limited to 'README.cmake')
-rw-r--r-- | README.cmake | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/README.cmake b/README.cmake new file mode 100644 index 0000000..9e4a53e --- /dev/null +++ b/README.cmake @@ -0,0 +1,44 @@ +libical supports the CMake buildsystem. +You must have CMake version 2.4 or higher. + +Please see the comments at the top of CMakeLists.txt for +the available configuration options you can pass to cmake. + +The installation directory defaults to /usr/local on UNIX +and c:/Program Files on Windows. You can change this by +passing -DCMAKE_INSTALL_PREFIX=/install/path to cmake. + +To build a debug version pass -DCMAKE_BUILD_TYPE=Debug to cmake. + +Building on Linux/Unix with a native compiler: +% mkdir build +% cd build +% cmake .. +% make +% make install + +Building on Windows with MicroSoft Visual Studio: +% mkdir build +% cd build +% cmake -G "NMake Makefiles" .. +% nmake +% nmake install + + +Building on Windows with mingw: +% mkdir build +% cd build +% cmake -G "MinGW Makefiles" .. +% mingw32-make +% mingw32-make install + + +Building on Windows under Cygwin: +% mkdir build +% cd build +% cmake .. +% make +% make install + +To run the test suite, run 'make test'. +To run the test suite in verbose mode, run 'make test ARGS="-V"'. |