summaryrefslogtreecommitdiff
path: root/Install.txt
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2014-09-20 12:12:51 -0400
committerAllen Winter <allen.winter@kdab.com>2014-09-20 12:12:51 -0400
commitfde0e93a388c9f12b94998671131a9a19e793c6e (patch)
tree56b65d2725fa72daae6aaf0a6e627126c5cc5ad2 /Install.txt
parent5cc95b46aec40a996fdbaaf7416c6cde36b14a3c (diff)
downloadlibical-git-fde0e93a388c9f12b94998671131a9a19e793c6e.tar.gz
issue87: rename the CMake STATIC_LIBRARY to STATIC_ONLY
to better describe the actual behavior of this setting.
Diffstat (limited to 'Install.txt')
-rw-r--r--Install.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/Install.txt b/Install.txt
index f0aba3ea..cd976a02 100644
--- a/Install.txt
+++ b/Install.txt
@@ -1,4 +1,4 @@
-Cubical v1.0 and above uses the CMake buildsystem.
+Libical 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
@@ -56,3 +56,7 @@ run 'make test' (or 'nmake test' or 'mingw32-make test')
To run the test suite in verbose mode, pass ARGS="-V" to the make command
For example: nmake test ARGS="-V"
+
+By default, the buildsystem creates shared(dynamic) and static versions
+of the libraries, but that behavior can be modified at CMake time:
+ - To build the static libraries only, pass -DSTATIC_ONLY=True to CMake.