Browse Source

updated cmake policies

cl-refactor
Marek Kotewicz 10 years ago
parent
commit
48dfbaf3c9
  1. 2
      libdevcore/CMakeLists.txt
  2. 2
      libdevcrypto/CMakeLists.txt
  3. 2
      libethcore/CMakeLists.txt
  4. 2
      libethereum/CMakeLists.txt
  5. 2
      libevm/CMakeLists.txt
  6. 2
      libevmcore/CMakeLists.txt
  7. 2
      liblll/CMakeLists.txt
  8. 2
      libp2p/CMakeLists.txt
  9. 2
      libserpent/CMakeLists.txt
  10. 2
      libsolidity/CMakeLists.txt
  11. 2
      libweb3jsonrpc/CMakeLists.txt
  12. 2
      libwebthree/CMakeLists.txt
  13. 2
      libwhisper/CMakeLists.txt
  14. 2
      secp256k1/CMakeLists.txt
  15. 2
      third/CMakeLists.txt

2
libdevcore/CMakeLists.txt

@ -1,7 +1,7 @@
cmake_policy(SET CMP0015 OLD)
# this policy was introduced in cmake 3.0
# remove if, once 3.0 will be used on unix
if (APPLE)
if (${CMAKE_MAJOR_VERSION} GREATER 2)
# old policy do not use MACOSX_RPATH
cmake_policy(SET CMP0042 OLD)
endif()

2
libdevcrypto/CMakeLists.txt

@ -1,7 +1,7 @@
cmake_policy(SET CMP0015 OLD)
# this policy was introduced in cmake 3.0
# remove if, once 3.0 will be used on unix
if (APPLE)
if (${CMAKE_MAJOR_VERSION} GREATER 2)
# old policy do not use MACOSX_RPATH
cmake_policy(SET CMP0042 OLD)
endif()

2
libethcore/CMakeLists.txt

@ -1,7 +1,7 @@
cmake_policy(SET CMP0015 NEW)
# this policy was introduced in cmake 3.0
# remove if, once 3.0 will be used on unix
if (APPLE)
if (${CMAKE_MAJOR_VERSION} GREATER 2)
# old policy do not use MACOSX_RPATH
cmake_policy(SET CMP0042 OLD)
endif()

2
libethereum/CMakeLists.txt

@ -1,7 +1,7 @@
cmake_policy(SET CMP0015 NEW)
# this policy was introduced in cmake 3.0
# remove if, once 3.0 will be used on unix
if (APPLE)
if (${CMAKE_MAJOR_VERSION} GREATER 2)
# old policy do not use MACOSX_RPATH
cmake_policy(SET CMP0042 OLD)
endif()

2
libevm/CMakeLists.txt

@ -1,7 +1,7 @@
cmake_policy(SET CMP0015 NEW)
# this policy was introduced in cmake 3.0
# remove if, once 3.0 will be used on unix
if (APPLE)
if (${CMAKE_MAJOR_VERSION} GREATER 2)
# old policy do not use MACOSX_RPATH
cmake_policy(SET CMP0042 OLD)
endif()

2
libevmcore/CMakeLists.txt

@ -1,7 +1,7 @@
cmake_policy(SET CMP0015 NEW)
# this policy was introduced in cmake 3.0
# remove if, once 3.0 will be used on unix
if (APPLE)
if (${CMAKE_MAJOR_VERSION} GREATER 2)
# old policy do not use MACOSX_RPATH
cmake_policy(SET CMP0042 OLD)
endif()

2
liblll/CMakeLists.txt

@ -1,7 +1,7 @@
cmake_policy(SET CMP0015 NEW)
# this policy was introduced in cmake 3.0
# remove if, once 3.0 will be used on unix
if (APPLE)
if (${CMAKE_MAJOR_VERSION} GREATER 2)
# old policy do not use MACOSX_RPATH
cmake_policy(SET CMP0042 OLD)
endif()

2
libp2p/CMakeLists.txt

@ -1,7 +1,7 @@
cmake_policy(SET CMP0015 NEW)
# this policy was introduced in cmake 3.0
# remove if, once 3.0 will be used on unix
if (APPLE)
if (${CMAKE_MAJOR_VERSION} GREATER 2)
# old policy do not use MACOSX_RPATH
cmake_policy(SET CMP0042 OLD)
endif()

2
libserpent/CMakeLists.txt

@ -1,7 +1,7 @@
cmake_policy(SET CMP0015 NEW)
# this policy was introduced in cmake 3.0
# remove if, once 3.0 will be used on unix
if (APPLE)
if (${CMAKE_MAJOR_VERSION} GREATER 2)
# old policy do not use MACOSX_RPATH
cmake_policy(SET CMP0042 OLD)
endif()

2
libsolidity/CMakeLists.txt

@ -1,7 +1,7 @@
cmake_policy(SET CMP0015 NEW)
# this policy was introduced in cmake 3.0
# remove if, once 3.0 will be used on unix
if (APPLE)
if (${CMAKE_MAJOR_VERSION} GREATER 2)
# old policy do not use MACOSX_RPATH
cmake_policy(SET CMP0042 OLD)
endif()

2
libweb3jsonrpc/CMakeLists.txt

@ -1,7 +1,7 @@
cmake_policy(SET CMP0015 NEW)
# this policy was introduced in cmake 3.0
# remove if, once 3.0 will be used on unix
if (APPLE)
if (${CMAKE_MAJOR_VERSION} GREATER 2)
# old policy do not use MACOSX_RPATH
cmake_policy(SET CMP0042 OLD)
endif()

2
libwebthree/CMakeLists.txt

@ -1,7 +1,7 @@
cmake_policy(SET CMP0015 NEW)
# this policy was introduced in cmake 3.0
# remove if, once 3.0 will be used on unix
if (APPLE)
if (${CMAKE_MAJOR_VERSION} GREATER 2)
# old policy do not use MACOSX_RPATH
cmake_policy(SET CMP0042 OLD)
endif()

2
libwhisper/CMakeLists.txt

@ -1,7 +1,7 @@
cmake_policy(SET CMP0015 NEW)
# this policy was introduced in cmake 3.0
# remove if, once 3.0 will be used on unix
if (APPLE)
if (${CMAKE_MAJOR_VERSION} GREATER 2)
# old policy do not use MACOSX_RPATH
cmake_policy(SET CMP0042 OLD)
endif()

2
secp256k1/CMakeLists.txt

@ -1,7 +1,7 @@
cmake_policy(SET CMP0015 NEW)
# this policy was introduced in cmake 3.0
# remove if, once 3.0 will be used on unix
if (APPLE)
if (${CMAKE_MAJOR_VERSION} GREATER 2)
# old policy do not use MACOSX_RPATH
cmake_policy(SET CMP0042 OLD)
endif()

2
third/CMakeLists.txt

@ -3,7 +3,7 @@ cmake_policy(SET CMP0015 NEW)
cmake_policy(SET CMP0020 NEW)
# this policy was introduced in cmake 3.0
# remove if, once 3.0 will be used on unix
if (APPLE)
if (${CMAKE_MAJOR_VERSION} GREATER 2)
cmake_policy(SET CMP0043 OLD)
endif()

Loading…
Cancel
Save