I use CMake to create an Xcode project, and I use
set_target_properties(myproj PROPERTIES XCODE_ATTRIBUTE_WHATEVER "some value")
to explicitly set the build setting. I would like to install it only for a specific configuration, similar to using
set(CMAKE_CXX_FLAGS_MYCONFIG "-O2")
How can i do this?
build-process xcode cmake configuration
Jesse beder
source share