aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortobtoht <tob@featherwallet.org>2025-04-03 11:33:23 +0000
committertobtoht <tob@featherwallet.org>2025-04-03 11:33:23 +0000
commitc84cc63922da485a2b8617baa7798efeed608758 (patch)
tree3b4d34e1c6192b7e07632b398455f6c45c9ceb85
parentf1311d4237404ab7da76241dbf10e92a65132cc4 (diff)
parent0d0a656618e396de7ff60368dde708ad9d45f866 (diff)
downloadmonzero-core-c84cc63922da485a2b8617baa7798efeed608758.tar.gz
monzero-core-c84cc63922da485a2b8617baa7798efeed608758.tar.xz
monzero-core-c84cc63922da485a2b8617baa7798efeed608758.zip
Merge pull request #9880
0d0a65661 build: set cmake_minimum_required(VERSION 3.5) consistently (cyan)
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 37ad0a23e..46bd5eb1b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -219,7 +219,7 @@ function(forbid_undefined_symbols)
file(MAKE_DIRECTORY "${TEST_PROJECT}")
file(WRITE "${TEST_PROJECT}/CMakeLists.txt"
[=[
-cmake_minimum_required(VERSION 3.1)
+cmake_minimum_required(VERSION 3.5)
project(test)
option(EXPECT_SUCCESS "" ON)
file(WRITE "${CMAKE_SOURCE_DIR}/incorrect_source.cpp" "void undefined_symbol(); void symbol() { undefined_symbol(); }")