summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2022-09-01 12:40:34 -0400
committerNat Goodspeed <nat@lindenlab.com>2022-09-01 12:40:34 -0400
commit215bc3883b7988680b83e6e1ef148b775ad329d3 (patch)
tree0ccaae16f0b2bd2e89b08c63b2db43a76cbe7b07 /indra
parent2aace1793b2940c86b2aa0d001137d09aec82dae (diff)
parent56d5666f9afe87f2563c6bbb1d220573abd5351e (diff)
DRTVWR-568: Merge branch 'brad/cmake-minimum' into DRTVWR-568.
This bumps the minimum required CMake version up to support for the new file(CREATE_LINK) commands.
Diffstat (limited to 'indra')
-rw-r--r--indra/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/CMakeLists.txt b/indra/CMakeLists.txt
index 68f6e962ef..0e7f52d189 100644
--- a/indra/CMakeLists.txt
+++ b/indra/CMakeLists.txt
@@ -4,7 +4,8 @@
# other commands to guarantee full compatibility
# with the version specified
## 3.8 added VS_DEBUGGER_WORKING_DIRECTORY support
-cmake_minimum_required(VERSION 3.8.0 FATAL_ERROR)
+## 3.14 added FILE CREATE_LINK
+cmake_minimum_required(VERSION 3.14.0 FATAL_ERROR)
set(ROOT_PROJECT_NAME "SecondLife" CACHE STRING
"The root project/makefile/solution name. Defaults to SecondLife.")