mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 09:00:44 +00:00
Default Xcode option GPU Frame Capture to Disabled
The CMake option "CMAKE_XCODE_SCHEME_ENABLE_GPU_FRAME_CAPTURE_MODE" is available starting from CMake version 3.23.0. Increase the minimum CMake version for building Apple to 3.23.0 from 3.20.0
This commit is contained in:
committed by
Baldur Karlsson
parent
b692626839
commit
1c925494ef
+3
-2
@@ -1,11 +1,12 @@
|
||||
cmake_minimum_required(VERSION 2.8.12)
|
||||
|
||||
if(APPLE)
|
||||
# Building for Apple requires at least CMake 3.20.0
|
||||
cmake_minimum_required(VERSION 3.20.0)
|
||||
# Building for Apple requires at least CMake 3.23.0
|
||||
cmake_minimum_required(VERSION 3.23.0)
|
||||
|
||||
SET(CMAKE_OSX_DEPLOYMENT_TARGET "12.00" CACHE STRING "Minimum SDK for Mac OS X")
|
||||
SET(CMAKE_XCODE_GENERATE_SCHEME ON)
|
||||
SET(CMAKE_XCODE_SCHEME_ENABLE_GPU_FRAME_CAPTURE_MODE "Disabled")
|
||||
endif()
|
||||
|
||||
# Configure some stuff that needs to be set really early
|
||||
|
||||
Reference in New Issue
Block a user