mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-03 05:08:47 -06:00
When the path to a header file is specified using a generator expression, evaluation of the genex must produce an absolute path. Update our documented example and add a test covering the case. Fixes: #20617
15 lines
457 B
CMake
15 lines
457 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
project(PchMultilanguage C CXX)
|
|
|
|
add_executable(foobar
|
|
foo.c
|
|
main.cpp
|
|
)
|
|
target_include_directories(foobar PUBLIC include)
|
|
target_precompile_headers(foobar PRIVATE
|
|
"$<$<COMPILE_LANGUAGE:C>:${CMAKE_CURRENT_SOURCE_DIR}/include/foo_C.h>"
|
|
"$<$<COMPILE_LANGUAGE:CXX>:${CMAKE_CURRENT_SOURCE_DIR}/include/foo_CXX.h>"
|
|
"$<$<COMPILE_LANGUAGE:C>:<stddef.h$<ANGLE-R>>"
|
|
"$<$<COMPILE_LANGUAGE:CXX>:<cstddef$<ANGLE-R>>"
|
|
)
|