mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-12-18 14:30:12 +00:00
cmake: Require MacOSX 10.15 or newer
This commit is contained in:
parent
f40c7a9906
commit
7f1ae7f9f1
1 changed files with 7 additions and 0 deletions
|
@ -24,6 +24,13 @@ else()
|
||||||
set(LOGPREFIX "")
|
set(LOGPREFIX "")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# MacOSX: Require at least MacOSX 10.15 for C++17 support.
|
||||||
|
if(APPLE)
|
||||||
|
if(CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS 10.15)
|
||||||
|
CacheSet(CMAKE_OSX_DEPLOYMENT_TARGET "10.15")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Modules
|
# Modules
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
Loading…
Reference in a new issue