How do I set this property to specify some default arguments for an executable when using the Xcode generator?
I have something like this:
add_executable (test test.c ...)
if (CMAKE_GENERATOR MATCHES "Xcode")
set_property (TARGET test PROPERTY XCODE_SCHEME_ARGUMENTS "blah")
endif ()
If I open Xcode and select “Edit Scheme…” for this target, it doesn’t seem to have any effect (default arguments are empty).