summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/PrecompileHeaders/PchDebugGenex.cmake
blob: 854689fd8f02282f8f115e64bd7ba0c63f7da8c3 (plain)
1
2
3
4
5
6
7
8
9
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>
)