blob: c9c6395cad4912f5512f44f207726eb56f964c23 (
plain) (
blame)
1
2
3
4
5
6
7
|
file(GLOB_RECURSE nt_namespace_include "include/*.hpp")
file(GLOB nt_namespace_src "src/*.cpp")
add_library(nt_namespace ${nt_namespace_src} ${nt_namespace_include})
target_include_directories(nt_namespace PUBLIC include/)
target_link_libraries(nt_namespace PRIVATE service)
add_subdirectory(utils)
|