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.
15 lines
457 B
15 lines
457 B
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>>"
|
|
)
|