summaryrefslogtreecommitdiffstats
path: root/tests/CMakeLists.txt
blob: bec7621f35845618bee1d2fb6dabc15663e5e71f (plain)
1
2
3
4
5
6
7
8
9
# add_qtmaildir_test(<name>) builds tests/test_<name>.cpp and registers it.
function(add_qtmaildir_test name)
    add_executable(test_${name} test_${name}.cpp)
    target_link_libraries(test_${name} PRIVATE qtmaildir_lib Qt6::Test)
    add_test(NAME ${name} COMMAND test_${name})
endfunction()

add_qtmaildir_test(keymap)
add_qtmaildir_test(config)