offa 7 лет назад
Родитель
Сommit
6710dac767
1 измененных файлов: 3 добавлений и 3 удалений
  1. +3
    -3
      test/CMakeLists.txt

+ 3
- 3
test/CMakeLists.txt Просмотреть файл

@@ -3,13 +3,13 @@ add_library(Catch INTERFACE)
target_include_directories(Catch INTERFACE "catch")


add_library(testmain TestMain.cpp)
target_link_libraries(testmain Catch)
add_library(TestMain TestMain.cpp)
target_link_libraries(TestMain Catch)


function(add_test_suite name)
add_executable(${name} ${name}.cpp)
target_link_libraries(${name} testmain)
target_link_libraries(${name} TestMain)
add_test(NAME ${name} COMMAND ${name})
endfunction()


Загрузка…
Отмена
Сохранить