aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/um/service/CMakeLists.txt
blob: 34b3d133592438cbc3b37d6233e45d8a0831eddd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
file(GLOB libservice_sources "src/*.cpp")
file(GLOB_RECURSE libservice_headers "include/*.hpp")
add_library(libservice
    ${libservice_sources}
    ${libservice_headers})
target_include_directories(libservice PUBLIC include)
target_compile_definitions(libservice PRIVATE NOMINMAX)

add_subdirectory(test)
add_subdirectory(utils)