diff options
-rw-r--r-- | um/wrappers/simple/CMakeLists.txt | 2 | ||||
-rw-r--r-- | um/wrappers/special/nt_namespace/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/um/wrappers/simple/CMakeLists.txt b/um/wrappers/simple/CMakeLists.txt index 85bc34b..84f40c5 100644 --- a/um/wrappers/simple/CMakeLists.txt +++ b/um/wrappers/simple/CMakeLists.txt @@ -2,6 +2,6 @@ file(GLOB_RECURSE simple_include "include/*.hpp") file(GLOB simple_src "src/*.cpp") add_library(simple ${simple_src} ${simple_include}) target_include_directories(simple PUBLIC include/) -target_link_libraries(simple PRIVATE service) +target_link_libraries(simple PUBLIC service) add_subdirectory(utils) diff --git a/um/wrappers/special/nt_namespace/CMakeLists.txt b/um/wrappers/special/nt_namespace/CMakeLists.txt index c9c6395..dc99170 100644 --- a/um/wrappers/special/nt_namespace/CMakeLists.txt +++ b/um/wrappers/special/nt_namespace/CMakeLists.txt @@ -2,6 +2,6 @@ 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) +target_link_libraries(nt_namespace PUBLIC service) add_subdirectory(utils) |