aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/libnt_path_converter
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-07-16 00:02:12 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-07-16 00:02:12 +0300
commit3061b8f1aef70de818585945e99073fe282e2db2 (patch)
tree2367cf6bd4521c680504c76877825c75c08612b7 /utils/libnt_path_converter
parentREADME updates (diff)
downloadwindows7-drivers-3061b8f1aef70de818585945e99073fe282e2db2.tar.gz
windows7-drivers-3061b8f1aef70de818585945e99073fe282e2db2.zip
utils: CMakeLists.txt updates
Diffstat (limited to '')
-rw-r--r--utils/libnt_path_converter/CMakeLists.txt13
1 files changed, 7 insertions, 6 deletions
diff --git a/utils/libnt_path_converter/CMakeLists.txt b/utils/libnt_path_converter/CMakeLists.txt
index 626a4b1..69f85d0 100644
--- a/utils/libnt_path_converter/CMakeLists.txt
+++ b/utils/libnt_path_converter/CMakeLists.txt
@@ -1,9 +1,10 @@
project(libnt_path_converter)
-file(GLOB ${PROJECT_NAME}_sources "src/*.cpp")
-file(GLOB_RECURSE ${PROJECT_NAME}_headers "include/*.hpp")
-add_library(${PROJECT_NAME} ${${PROJECT_NAME}_sources}
- ${${PROJECT_NAME}_headers})
-target_link_libraries(${PROJECT_NAME} libservice)
-target_include_directories(${PROJECT_NAME} PUBLIC include/)
+file(GLOB libnt_path_converter_sources "src/*.cpp")
+file(GLOB_RECURSE libnt_path_converter_headers "include/*.hpp")
+add_library(libnt_path_converter
+ ${libnt_path_converter_sources}
+ ${libnt_path_converter_headers})
+target_link_libraries(libnt_path_converter libservice)
+target_include_directories(libnt_path_converter PUBLIC include/)
add_subdirectory(utils)