-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename projects to use - instead of _
- Loading branch information
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
cmake_minimum_required (VERSION 2.6) | ||
|
||
project(daemon_client_utils LANGUAGES CXX) | ||
project(daemon-client-utils LANGUAGES CXX) | ||
|
||
add_library(daemon_client_utils include/daemon_utils/daemon_launcher.h src/daemon_launcher.cpp include/daemon_utils/launchable_service_client.h) | ||
target_include_directories(daemon_client_utils PUBLIC include/) | ||
target_link_libraries(daemon_client_utils logger simpleipc file_util) | ||
add_library(daemon-client-utils include/daemon_utils/daemon_launcher.h src/daemon_launcher.cpp include/daemon_utils/launchable_service_client.h) | ||
target_include_directories(daemon-client-utils PUBLIC include/) | ||
target_link_libraries(daemon-client-utils logger simpleipc file-util) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
cmake_minimum_required (VERSION 2.6) | ||
|
||
project(daemon_server_utils LANGUAGES CXX) | ||
project(daemon-server-utils LANGUAGES CXX) | ||
|
||
add_library(daemon_server_utils include/daemon_utils/auto_shutdown_service.h src/auto_shutdown_service.cpp) | ||
target_include_directories(daemon_server_utils PUBLIC include/) | ||
target_link_libraries(daemon_server_utils logger simpleipc file_util) | ||
add_library(daemon-server-utils include/daemon_utils/auto_shutdown_service.h src/auto_shutdown_service.cpp) | ||
target_include_directories(daemon-server-utils PUBLIC include/) | ||
target_link_libraries(daemon-server-utils logger simpleipc file-util) |