mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-08 11:47:30 +08:00
Improve command for running test
It enables `make check` command to build tests and run it altogether.
This commit is contained in:
parent
1c0479a795
commit
958929aa77
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user