aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorRandi Joseph <randi@codehalo.com>2016-12-23 02:54:34 -0500
committerRandi Joseph <randi@codehalo.com>2016-12-23 02:54:34 -0500
commit52db01ea6d1e75dd88426f5144148c74e7356948 (patch)
tree4b0be95f4bf172e30442cd11fdbc9a5c8dda3218 /contrib
parentMerge pull request #1487 (diff)
downloadmonero-52db01ea6d1e75dd88426f5144148c74e7356948.tar.xz
Silence CMake policy warning on macos.
See: https://cmake.org/cmake/help/v3.0/policy/CMP0042.html
Diffstat (limited to 'contrib')
-rw-r--r--contrib/otshell_utils/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/otshell_utils/CMakeLists.txt b/contrib/otshell_utils/CMakeLists.txt
index 464b125e4..263f07c85 100644
--- a/contrib/otshell_utils/CMakeLists.txt
+++ b/contrib/otshell_utils/CMakeLists.txt
@@ -3,6 +3,10 @@ project (otshell CXX)
# Add executable
+if(APPLE AND POLICY CMP0042)
+ cmake_policy(SET CMP0042 NEW)
+endif()
+
file(GLOB otshell_utils_sources # All files in directory:
"*.h"
"*.hpp"