Raise the bar to cmake 3.13, this gives access to more modern

constructs.
master
Nicky 2022-04-09 19:03:44 +02:00
parent 37f652206b
commit 6e1ae6ec7b
1 changed files with 2 additions and 1 deletions

View File

@ -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.13/12 is needed for add_link_options/add_compile_definitions
cmake_minimum_required(VERSION 3.13.0 FATAL_ERROR)
set(ROOT_PROJECT_NAME "SecondLife" CACHE STRING
"The root project/makefile/solution name. Defaults to SecondLife.")