mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-02 20:29:49 -05:00
a55df20499
Fixes: #19789
16 lines
596 B
CMake
16 lines
596 B
CMake
set(foo_pch_header "${RunCMake_TEST_BINARY_DIR}/CMakeFiles/foo.dir/cmake_pch.h")
|
|
if (RunCMake_GENERATOR_IS_MULTI_CONFIG)
|
|
set(foo_pch_header "${RunCMake_TEST_BINARY_DIR}/CMakeFiles/foo.dir/Debug/cmake_pch.h")
|
|
endif()
|
|
set(foobar_pch_header "${RunCMake_TEST_BINARY_DIR}/CMakeFiles/foobar.dir/cmake_pch.h")
|
|
|
|
if (NOT EXISTS ${foo_pch_header})
|
|
set(RunCMake_TEST_FAILED "Generated foo pch header ${foo_pch_header} does not exist")
|
|
return()
|
|
endif()
|
|
|
|
if (EXISTS ${foobar_pch_header})
|
|
set(RunCMake_TEST_FAILED "Generated foobar pch header ${foobar_pch_header} should not exist")
|
|
return()
|
|
endif()
|