3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00

Merge pull request #1096 from delcypher/cmake_fix_macos_rpath_warning

[CMake] Fix CMake warning about CMP0042 on macOS
This commit is contained in:
Christoph M. Wintersteiger 2017-06-22 12:30:48 +01:00 committed by GitHub
commit 0008aefe40

View file

@ -14,6 +14,11 @@ if (POLICY CMP0054)
cmake_policy(SET CMP0054 OLD)
endif()
if (POLICY CMP0042)
# Enable `MACOSX_RPATH` by default.
cmake_policy(SET CMP0042 NEW)
endif()
set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cxx_compiler_flags_overrides.cmake")
project(Z3 CXX)