diff options
Diffstat (limited to 'test/CMakeLists.txt')
-rw-r--r-- | test/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 656caa9..4574211 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -8,9 +8,9 @@ endif() set(CC_STATIC_RUNTIME OFF) # Reduce the number of symbols in this test utility -add_executable(foobar foobar.cpp) +add_executable(symbols symbols.cpp) -install(TARGETS foobar RUNTIME DESTINATION bin) +install(TARGETS symbols RUNTIME DESTINATION bin) if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") - install(FILES "$<TARGET_PDB_FILE:foobar>" DESTINATION bin OPTIONAL) + install(FILES "$<TARGET_PDB_FILE:symbols>" DESTINATION bin OPTIONAL) endif() |