Procházet zdrojové kódy

Improved handling of Catch (fixes #13).

main
offa před 8 roky
rodič
revize
417d9563b5
1 změnil soubory, kde provedl 7 přidání a 2 odebrání
  1. +7
    -2
      test/CMakeLists.txt

+ 7
- 2
test/CMakeLists.txt Zobrazit soubor



add_library(Catch INTERFACE)
target_include_directories(Catch INTERFACE "catch")


add_library(testmain TestMain.cpp) add_library(testmain TestMain.cpp)
target_include_directories(testmain SYSTEM PUBLIC "catch/")
target_link_libraries(testmain Catch)



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


add_test_suite(ScopeGuardTest)


add_test_suite(ScopeGuardTest)







Načítá se…
Zrušit
Uložit