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.
10 lines
269 B
10 lines
269 B
5 years ago
|
project(VsPrecompileHeadersReuseFromCompilePDBName CXX)
|
||
|
|
||
|
add_library(a SHARED empty.cxx)
|
||
|
target_precompile_headers(a PRIVATE <windows.h>)
|
||
|
|
||
|
add_library(b SHARED empty.cxx)
|
||
|
target_precompile_headers(b REUSE_FROM a)
|
||
|
|
||
|
set_target_properties(b PROPERTIES COMPILE_PDB_NAME b)
|