You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
set(foobar_pch_h_header "${RunCMake_TEST_BINARY_DIR}/CMakeFiles/foobar.dir/cmake_pch.h")
|
|
|
|
set(foobar_pch_hxx_header "${RunCMake_TEST_BINARY_DIR}/CMakeFiles/foobar.dir/cmake_pch.hxx")
|
|
|
|
if (RunCMake_GENERATOR_IS_MULTI_CONFIG)
|
|
|
|
set(foobar_pch_h_header "${RunCMake_TEST_BINARY_DIR}/CMakeFiles/foobar.dir/Debug/cmake_pch.h")
|
|
|
|
set(foobar_pch_hxx_header "${RunCMake_TEST_BINARY_DIR}/CMakeFiles/foobar.dir/Debug/cmake_pch.hxx")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT EXISTS ${foobar_pch_h_header})
|
|
|
|
set(RunCMake_TEST_FAILED "Generated foobar C pch header ${foobar_pch_h_header} does not exist")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT EXISTS ${foobar_pch_hxx_header})
|
|
|
|
set(RunCMake_TEST_FAILED "Generated foobar C++ pch header ${foobar_pch_hxx_header} does not exist")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
file(STRINGS ${foobar_pch_h_header} foobar_pch_h_header_strings)
|
|
|
|
|
|
|
|
if (NOT foobar_pch_h_header_strings MATCHES ";#include \"[^\"]*PrecompileHeaders/include/foo_C.h\";#include <stddef.h>(;|$)")
|
|
|
|
set(RunCMake_TEST_FAILED "Generated foo pch header\n ${foobar_pch_h_header}\nhas bad content:\n ${foobar_pch_h_header_strings}")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
file(STRINGS ${foobar_pch_hxx_header} foobar_pch_hxx_header_strings)
|
|
|
|
|
|
|
|
if (NOT foobar_pch_hxx_header_strings MATCHES ";#include \"[^\"]*PrecompileHeaders/include/foo_CXX.h\";#include <cstddef>(;|$)")
|
|
|
|
set(RunCMake_TEST_FAILED "Generated foo pch header\n ${foobar_pch_hxx_header}\nhas bad content:\n ${foobar_pch_hxx_header_strings}")
|
|
|
|
return()
|
|
|
|
endif()
|