By default I would like to set the Xcode scheme Option GPU Frame Capture
to disabled
when generating an Xcode project using CMake.
In the Xcode .xcscheme
file the attribute is called enableGPUFrameCaptureMode
and the value I need is "3"
ie. using the UI to set this attribute to disabled
then I get this output in the Xcode .xcscheme file
enableGPUFrameCaptureMode = "3"
I am using the existing XCODE_SCEHEME properties to set specific scheme options ie.
set_target_properties(build-qrenderdoc PROPERTIES XCODE_SCHEME_DEBUG_DOCUMENT_VERSIONING OFF)
set_target_properties(build-qrenderdoc PROPERTIES XCODE_SCHEME_EXECUTABLE ${CMAKE_BINARY_DIR}/bin/qrenderdoc.app)
I could not see a property relating to GPU Frame Capture
Thank you in advance