mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 06:01:33 -06:00
Improve command for running test
It enables `make check` command to build tests and run it altogether.
This commit is contained in:
@@ -16,10 +16,13 @@ set(testFiles
|
||||
testutilsgzip.cpp
|
||||
testutilsstring.cpp
|
||||
)
|
||||
|
||||
foreach(testFile ${testFiles})
|
||||
get_filename_component(testFilename "${testFile}" NAME_WLE)
|
||||
|
||||
add_executable("${testFilename}" "${testFile}")
|
||||
target_link_libraries("${testFilename}" PRIVATE Qt::Test qbt_base)
|
||||
add_test(NAME "${testFilename}" COMMAND "${testFilename}")
|
||||
|
||||
add_dependencies(check "${testFilename}")
|
||||
endforeach()
|
||||
|
||||
Reference in New Issue
Block a user