-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
6 additions
and
0 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,5 +1,7 @@ | ||
add_library(privsep_op STATIC src/privsep_op.c) | ||
|
||
get_filename_component(COMMON_FOLDER ${CMAKE_CURRENT_SOURCE_DIR}/../ ABSOLUTE) | ||
target_include_directories(privsep_op PUBLIC include) | ||
include_directories(${COMMON_FOLDER}/pal/include) | ||
|
||
target_link_libraries(privsep_op utils time_op Logger) |
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,5 +1,7 @@ | ||
add_library(pthreads_op STATIC src/pthreads_op.c) | ||
|
||
get_filename_component(COMMON_FOLDER ${CMAKE_CURRENT_SOURCE_DIR}/../ ABSOLUTE) | ||
target_include_directories(pthreads_op PUBLIC include) | ||
include_directories(${COMMON_FOLDER}/pal/include) | ||
|
||
target_link_libraries(pthreads_op utils time_op Logger) |
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,5 +1,7 @@ | ||
add_library(regex_op STATIC src/regex_op.c) | ||
|
||
get_filename_component(COMMON_FOLDER ${CMAKE_CURRENT_SOURCE_DIR}/../ ABSOLUTE) | ||
target_include_directories(regex_op PUBLIC include) | ||
include_directories(${COMMON_FOLDER}/pal/include) | ||
|
||
target_link_libraries(regex_op utils Logger time_op) |