mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 14:20:06 -06:00
Since commit 97cc29c766 (VS: Teach generators how to mark per-config
source files, 2017-04-10, v3.9.0-rc1~268^2~2) the VS generators have
known how to generate per-config sources. We've now converted most
other code paths to support per-config sources, so drop the check
that disallows it.
This leaves only per-config support for precompiled headers and unity
build transformations, but those are optional features that can be
addressed later.
Fixes: #18233
Issue: #19789
17 lines
410 B
CMake
17 lines
410 B
CMake
include(RunCMake)
|
|
|
|
if(RunCMake_GENERATOR STREQUAL "Xcode")
|
|
run_cmake(ConfigNotAllowed)
|
|
endif()
|
|
|
|
run_cmake(OriginDebug)
|
|
run_cmake(CMP0026-LOCATION)
|
|
run_cmake(CMP0076-OLD)
|
|
run_cmake(CMP0076-WARN)
|
|
run_cmake(RelativePathInInterface)
|
|
run_cmake(RelativePathInSubdirGenEx)
|
|
run_cmake(RelativePathInSubdirInterface)
|
|
run_cmake(RelativePathInSubdirPrivate)
|
|
run_cmake(RelativePathInSubdirInclude)
|
|
run_cmake(ExportBuild)
|