-
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
14 changed files
with
48 additions
and
42 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
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
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
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
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,8 +1,9 @@ | ||
add_library(mem_op STATIC src/mem_op.c) | ||
|
||
get_filename_component(COMMON_FOLDER ${CMAKE_CURRENT_SOURCE_DIR}/../ ABSOLUTE) | ||
target_include_directories(mem_op PUBLIC include) | ||
include_directories(${COMMON_FOLDER}/pal/include) | ||
include_directories(${COMMON_FOLDER}/error_messages/include) | ||
target_include_directories(mem_op PUBLIC | ||
include | ||
${COMMON_FOLDER}/error_messages/include | ||
${COMMON_FOLDER}/pal/include) | ||
|
||
target_link_libraries(mem_op utils Logger time_op) |
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
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
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
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
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
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,8 +1,9 @@ | ||
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) | ||
include_directories(${COMMON_FOLDER}/error_messages/include) | ||
target_include_directories(regex_op PUBLIC | ||
include | ||
${COMMON_FOLDER}/error_messages/include | ||
${COMMON_FOLDER}/pal/include) | ||
|
||
target_link_libraries(regex_op utils Logger time_op) |
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,10 +1,11 @@ | ||
add_library(time_op STATIC src/time_op.c) | ||
|
||
get_filename_component(COMMON_FOLDER ${CMAKE_CURRENT_SOURCE_DIR}/../ ABSOLUTE) | ||
target_include_directories(time_op PUBLIC include) | ||
include_directories(${COMMON_FOLDER}/pal/include) | ||
include_directories(${COMMON_FOLDER}/regex_op/include) | ||
include_directories(${COMMON_FOLDER}/error_messages/include) | ||
include_directories(${COMMON_FOLDER}/utils/include) | ||
target_include_directories(time_op PUBLIC | ||
include | ||
${COMMON_FOLDER}/error_messages/include | ||
${COMMON_FOLDER}/pal/include | ||
${COMMON_FOLDER}/regex_op/include | ||
${COMMON_FOLDER}/utils/include) | ||
|
||
target_link_libraries(time_op utils 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
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