mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-08-03 22:58:41 +00:00
Slightly less hacky fix
This commit is contained in:
parent
ec9b13d279
commit
73064314e0
1 changed files with 8 additions and 2 deletions
|
@ -1,4 +1,10 @@
|
|||
cmake_minimum_required(VERSION 3.16)
|
||||
# We need to be able to use enable_language(OBJC) on Mac, so we need CMake 3.16 vs the 3.10 we use otherwise. Blame Apple.
|
||||
if (APPLE)
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
else()
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
endif()
|
||||
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue