Revamp "Watched folder options" dialog
[qBittorrent.git] / test / CMakeLists.txt
blob7d8dce8921fe21b6694e5b0a43de095ebd32db2d
1 if (QT6)
2     find_package(Qt6 REQUIRED COMPONENTS Test)
3 else()
4     find_package(Qt5 REQUIRED COMPONENTS Test)
5 endif()
7 enable_testing(true)
8 add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure)
10 include_directories("../src")
12 set(testFiles
13     testalgorithm.cpp
14     testbittorrenttrackerentry.cpp
15     testorderedset.cpp
16     testpath.cpp
17     testutilscompare.cpp
18     testutilsgzip.cpp
19     testutilsstring.cpp
20     testutilsversion.cpp
23 foreach(testFile ${testFiles})
24     get_filename_component(testFilename "${testFile}" NAME_WLE)
26     add_executable("${testFilename}" "${testFile}")
27     target_link_libraries("${testFilename}" PRIVATE Qt::Test qbt_base)
28     add_test(NAME "${testFilename}" COMMAND "${testFilename}")
30     add_dependencies(check "${testFilename}")
31 endforeach()