1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/cmake/Testing.cmake
Vincas Dargis d69023c9d7 fix(build): do not build unix-specific test on Windows
Modify CMake file to build posixsignalnotifier test only on
UNIX-like systems.
2017-10-14 19:33:16 +03:00

28 lines
654 B
CMake

################################################################################
#
# :: Testing
#
################################################################################
enable_testing()
function(auto_test subsystem module)
add_executable(test_${module}
test/${subsystem}/${module}_test.cpp)
target_link_libraries(test_${module}
${PROJECT_NAME}_static
${CHECK_LIBRARIES}
Qt5::Test)
add_test(
NAME test_${module}
COMMAND test_${module})
endfunction()
auto_test(core toxpk)
auto_test(core toxid)
auto_test(chatlog textformatter)
auto_test(net toxmedata)
if (UNIX)
auto_test(platform posixsignalnotifier)
endif()