Files
MaxScale/maxutils/maxbase/src/test/CMakeLists.txt
Johan Wikman 1b5b789342 MXS-2208 Move trim-functions from maxscale to maxbase
log.h now includes string.hh, which is conceptually wrong, but
log.h will shortly disappear and be superceded by log.hh.
2018-12-10 12:50:07 +02:00

20 lines
665 B
CMake

add_executable(test_mxb_http test_http.cc)
target_link_libraries(test_mxb_http maxbase)
add_test(test_mxb_http test_mxb_http)
add_executable(test_mxb_log test_log.cc)
target_link_libraries(test_mxb_log maxbase rt)
add_test(test_mxb_log test_mxb_log)
add_executable(test_semaphore test_semaphore.cc)
target_link_libraries(test_semaphore maxbase pthread rt)
add_test(test_semaphore test_semaphore)
add_executable(test_mxb_string test_string.cc)
target_link_libraries(test_mxb_string maxbase)
add_test(test_semaphore test_semaphore)
add_executable(test_worker test_worker.cc)
target_link_libraries(test_worker maxbase pthread rt)
add_test(test_worker test_worker)