diff options
Diffstat (limited to '')
-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 c910931..619a51e 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,7 +1,7 @@ set(CC_STATIC_RUNTIME OFF) -add_executable(lab_rat lab_rat.cpp) +add_executable(foobar foobar.cpp) -install(TARGETS lab_rat RUNTIME DESTINATION bin) +install(TARGETS foobar RUNTIME DESTINATION bin) if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") - install(FILES "$<TARGET_PDB_FILE:lab_rat>" DESTINATION bin OPTIONAL) + install(FILES "$<TARGET_PDB_FILE:foobar>" DESTINATION bin OPTIONAL) endif() |