mirror of https://github.com/qTox/qTox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
523 B
22 lines
523 B
################################################################################ |
|
# |
|
# :: Testing |
|
# |
|
################################################################################ |
|
|
|
include(CTest) |
|
|
|
enable_testing() |
|
|
|
function(auto_test subsystem module) |
|
add_executable(test_${module} |
|
test/common.h |
|
test/${subsystem}/${module}_test.cpp) |
|
target_link_libraries(test_${module} |
|
${PROJECT_NAME}_static |
|
${ALL_LIBRARIES} |
|
Qt5::Test) |
|
add_test( |
|
NAME test_${module} |
|
COMMAND test_${module}) |
|
endfunction()
|
|
|