This is an automated email from the ASF dual-hosted git repository.
pnoltes pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to refs/heads/develop by this push:
new a894d5e CELIX-426: Reverts check of cmake version for cmake policy
68. This does not work on travis
a894d5e is described below
commit a894d5e8cc6bda265664706cca4fc33940c4941a
Author: Pepijn Noltes <[email protected]>
AuthorDate: Fri Apr 26 19:57:49 2019 +0200
CELIX-426: Reverts check of cmake version for cmake policy 68. This does
not work on travis
---
CMakeLists.txt | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 64fcf33..516798f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -18,9 +18,9 @@
cmake_minimum_required (VERSION 3.2)
cmake_policy(SET CMP0012 NEW)
cmake_policy(SET CMP0042 NEW)
-if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.9.0")
- cmake_policy(SET CMP0068 NEW)
-endif()
+#if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.9.0")
+# cmake_policy(SET CMP0068 NEW)
+#endif()
project (Celix C CXX)