Provide safe helper for converting to 'seconds since epoch'
[qBittorrent.git] / test / CMakeLists.txt
blob7299f8e27f90748c23cd7a512d3f8b51bb472a80
1 find_package(Qt6 REQUIRED COMPONENTS Test)
3 enable_testing(true)
4 add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure)
6 include_directories("../src")
8 set(testFiles
9     testalgorithm.cpp
10     testbittorrenttrackerentry.cpp
11     testconceptsexplicitlyconvertibleto.cpp
12     testconceptsstringable.cpp
13     testglobal.cpp
14     testorderedset.cpp
15     testpath.cpp
16     testutilsbytearray.cpp
17     testutilscompare.cpp
18     testutilsdatetime.cpp
19     testutilsgzip.cpp
20     testutilsio.cpp
21     testutilsstring.cpp
22     testutilsversion.cpp
25 foreach(testFile ${testFiles})
26     get_filename_component(testFilename "${testFile}" NAME_WLE)
28     add_executable("${testFilename}" "${testFile}")
29     target_link_libraries("${testFilename}" PRIVATE Qt::Test qbt_base)
30     add_test(NAME "${testFilename}" COMMAND "${testFilename}")
32     add_dependencies(check "${testFilename}")
33 endforeach()