summaryrefslogtreecommitdiff
path: root/Settings.cmake
blob: 840c3915ecc9fb5ee216c5015ff5fd98122e920a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
include_guard()

message("-- Including settings")
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

# Commented out so that automated builds can work
# but we'll need to set this and set up matching Qt libs
# for building a final app bundle
#
# Note that Qt6 uses std::filesystem which requires minimum of 10.15
# Qt5 can be set lower (was working fine with 10.10)
#
# set(CMAKE_OSX_DEPLOYMENT_TARGET 10.15)