Sign in
cmake
/
cmake
/
76f08a107b344daff524974868ab30353bd9b255
/
.
/
Tests
/
RunCMake
/
PrecompileHeaders
/
PchDebugGenex.cmake
blob: 854689fd8f02282f8f115e64bd7ba0c63f7da8c3 [
file
] [
log
] [
blame
]
cmake_minimum_required
(
VERSION
3.15
)
project
(
PchDebugGenex
C
)
add_library
(
foo foo
.
c
)
target_include_directories
(
foo PUBLIC include
)
target_precompile_headers
(
foo PUBLIC
"$<$<CONFIG:Debug>:${CMAKE_CURRENT_SOURCE_DIR}/include/foo.h>"
<stdio.h>
)