summaryrefslogtreecommitdiff
path: root/Install.txt
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2014-05-31 17:22:41 -0400
committerAllen Winter <allen.winter@kdab.com>2014-05-31 17:22:41 -0400
commitbc831ea040913b1069e8eaf99496dc12704b94a9 (patch)
tree1502b86977c42dd5e5d202a2ff3807b08309f9ff /Install.txt
parentc1d3761c08651f469a3bd3a8130e6005b8e26136 (diff)
downloadlibical-git-bc831ea040913b1069e8eaf99496dc12704b94a9.tar.gz
Re-arrange after svn to git conversion
Diffstat (limited to 'Install.txt')
-rw-r--r--Install.txt48
1 files changed, 48 insertions, 0 deletions
diff --git a/Install.txt b/Install.txt
new file mode 100644
index 00000000..48756dfc
--- /dev/null
+++ b/Install.txt
@@ -0,0 +1,48 @@
+Cubical v1.0 and above uses the CMake buildsystem.
+The autoconf build system has been removed and is no longer supported.
+
+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.
+
+To build libical you will need:
+ - CMake version 2.4 or higher
+ - Perl
+ - libicu (not required but strongly recommended)
+ - a C compiler (let us know if the build fails with your C compiler)
+
+Building on Unix with gcc or clang:
+% 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"'.