aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/libtest/CMakeLists.txt
blob: 8c64ba1ea3559f3c6efb5238d9849e19b6177c6e (plain) (blame)
1
2
3
4
5
6
7
8
9
file(GLOB_RECURSE libtest_headers "include/*.hpp")
file(GLOB libtest_sources "src/*.cpp")
add_library(libtest
    ${libtest_sources}
    ${libtest_headers})
target_link_libraries(libtest libservice)
target_include_directories(libtest PUBLIC include/)

add_subdirectory(utils)