diff options
author | Cristian Adam <cristian.adam@gmail.com> | 2019-12-05 10:30:51 (GMT) |
---|---|---|
committer | Cristian Adam <cristian.adam@gmail.com> | 2019-12-08 19:22:34 (GMT) |
commit | 93becd61d19baa718bb10f2df25fedf31dfc2ded (patch) | |
tree | d1c8a24e62409734db9a484c4ac145ab0453d150 /Tests/RunCMake/PrecompileHeaders/PchReuseFromPrefixed.cmake | |
parent | a033bafbe01fcb4654f075955e0b3de7be81b0f7 (diff) | |
download | CMake-93becd61d19baa718bb10f2df25fedf31dfc2ded.zip CMake-93becd61d19baa718bb10f2df25fedf31dfc2ded.tar.gz CMake-93becd61d19baa718bb10f2df25fedf31dfc2ded.tar.bz2 |
PCH: Use the target's PREFIX for building the pdb file name
Also copy the REUSE_FROM pdb file only if the file is newer than the
existing one.
Fixes: #19731
Fixes: #20068
Diffstat (limited to 'Tests/RunCMake/PrecompileHeaders/PchReuseFromPrefixed.cmake')
-rw-r--r-- | Tests/RunCMake/PrecompileHeaders/PchReuseFromPrefixed.cmake | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Tests/RunCMake/PrecompileHeaders/PchReuseFromPrefixed.cmake b/Tests/RunCMake/PrecompileHeaders/PchReuseFromPrefixed.cmake new file mode 100644 index 0000000..e306d8e --- /dev/null +++ b/Tests/RunCMake/PrecompileHeaders/PchReuseFromPrefixed.cmake @@ -0,0 +1,29 @@ +cmake_minimum_required(VERSION 3.15) +project(PchReuseFromPrefixed C) + +if(CMAKE_C_COMPILE_OPTIONS_USE_PCH) + add_definitions(-DHAVE_PCH_SUPPORT) +endif() + +add_library(empty empty.c) +target_precompile_headers(empty PRIVATE + <stdio.h> + <string.h> +) +target_include_directories(empty PUBLIC include) + +add_library(foo foo.c) +target_include_directories(foo PUBLIC include) +target_precompile_headers(foo REUSE_FROM empty) + +# Visual Studio 2017 and greater +if (NOT (CMAKE_C_COMPILER_ID STREQUAL "MSVC" AND CMAKE_C_COMPILER_VERSION VERSION_LESS_EQUAL 19.10)) + set_target_properties(foo PROPERTIES PREFIX "lib" IMPORT_PREFIX "lib") +endif() + +add_executable(foobar foobar.c) +target_link_libraries(foobar foo ) +set_target_properties(foobar PROPERTIES PRECOMPILE_HEADERS_REUSE_FROM empty) + +enable_testing() +add_test(NAME foobar COMMAND foobar) |