mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
19 lines
422 B
Diff
19 lines
422 B
Diff
|
Set a more sane cmake_minimum_required.
|
||
|
|
||
|
--- a/CMakeLists.txt
|
||
|
+++ b/CMakeLists.txt
|
||
|
@@ -1,12 +1,7 @@
|
||
|
# CMake build script for ZeroMQ
|
||
|
+cmake_minimum_required(VERSION 3.16)
|
||
|
project(ZeroMQ)
|
||
|
|
||
|
-if(${CMAKE_SYSTEM_NAME} STREQUAL Darwin)
|
||
|
- cmake_minimum_required(VERSION 3.0.2)
|
||
|
-else()
|
||
|
- cmake_minimum_required(VERSION 2.8.12)
|
||
|
-endif()
|
||
|
-
|
||
|
include(CheckIncludeFiles)
|
||
|
include(CheckCCompilerFlag)
|
||
|
include(CheckCXXCompilerFlag)
|