summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Fella <nicolas.fella@gmx.de>2019-08-02 18:18:15 +0200
committerAllen Winter <allen.winter@kdab.com>2019-08-02 13:01:51 -0400
commit65980e2cf935257c9eb8c895798f730ab65a9572 (patch)
treef1f58d553fee80639041149486f0d0ce93389e1d
parentb0a64a2a9d0d35657424d3e879634c852bb633ae (diff)
downloadlibical-git-65980e2cf935257c9eb8c895798f730ab65a9572.tar.gz
Address comments
-rw-r--r--CMakeLists.txt6
-rw-r--r--ReleaseNotes.txt1
-rw-r--r--src/CMakeLists.txt2
3 files changed, 7 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index fe39b577..bcb9fefd 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -61,6 +61,10 @@
# Set to build using a 32bit time_t (ignored unless building with MSVC on Windows)
# Default=false (use the default size of time_t)
#
+# -DLIBICAL_BUILD_TESTING=[true|false]
+# Set to build the test suite
+# Default=true
+#
## Special CMake Options for Developers
#
@@ -566,7 +570,7 @@ if(SIZEOF_TIME_T EQUAL 4)
set(USE_32BIT_TIME_T TRUE)
endif()
-libical_option(BUILD_TESTING "Build tests." True)
+libical_option(LIBICAL_BUILD_TESTING "Build tests." True)
################# build subdirs ########################
diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt
index bb73b39b..9555ac9f 100644
--- a/ReleaseNotes.txt
+++ b/ReleaseNotes.txt
@@ -8,6 +8,7 @@ Version 3.0.6 (UNRELEASED):
* Various fuzzification fixes
* New publicly available function:
+ icaltimezone_truncate_vtimezone()
+ * Add option to disable building the test suite
Version 3.0.5 (14 May 2019):
----------------------------
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index d407a5a5..9337d091 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -4,6 +4,6 @@ add_subdirectory(libicalvcal)
if(ICAL_GLIB)
add_subdirectory(libical-glib)
endif()
-if(BUILD_TESTING)
+if(LIBICAL_BUILD_TESTING)
add_subdirectory(test)
endif()