mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
23 lines
523 B
CMake
23 lines
523 B
CMake
|
################################################################################
|
||
|
#
|
||
|
# :: 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()
|