CMake 3.14 has a very useful mechanizm to automatically generate schema files for Xcode. The problem is that it creates schemas for all targets while I need scheme only for few of them. I have hundreds of targets in my projects and scrolling down the list is annoying.
My code is:
if(${CMAKE_GENERATOR} MATCHES "Xcode")
set(CMAKE_XCODE_GENERATE_SCHEME YES)
endif()
All I want is to create only one scheme for ALL_BUILD target not for all targets.