blob: 4574211fb9ea9820788a8ea2de57f3fd2648902d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
add_executable(call_stack call_stack.cpp)
target_link_libraries(call_stack PRIVATE pdb_repo)
install(TARGETS call_stack RUNTIME DESTINATION bin)
if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
install(FILES "$<TARGET_PDB_FILE:call_stack>" DESTINATION bin OPTIONAL)
endif()
set(CC_STATIC_RUNTIME OFF) # Reduce the number of symbols in this test utility
add_executable(symbols symbols.cpp)
install(TARGETS symbols RUNTIME DESTINATION bin)
if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
install(FILES "$<TARGET_PDB_FILE:symbols>" DESTINATION bin OPTIONAL)
endif()
|