1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/cmake/Testing.cmake
Anthony Bilinski 97d05f9d67
refactor(id): make ContactId interface, implement GroupId
Precursor for group history, friend blocking
2019-04-13 12:58:25 -07:00

33 lines
786 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_CROSSCOMPILING_EMULATOR} test_${module})
endfunction()
auto_test(core core)
auto_test(core contactid)
auto_test(core toxid)
auto_test(core toxstring)
auto_test(chatlog textformatter)
auto_test(net toxmedata)
auto_test(net bsu)
auto_test(persistence paths)
if (UNIX)
auto_test(platform posixsignalnotifier)
endif()