Skip to content

Commit d61e6ef

Browse files
committed
Updated Flush-Reload
1 parent 7e2104d commit d61e6ef

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

cc-libs/CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
add_library (util util.c)
2+
add_library (fr_util fr_util.c)
23
target_include_directories (util PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
4+
target_include_directories (fr_util PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})

cc-libs/fr_util.c

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../extern/fr-repo/fr_util.c

cc-libs/fr_util.h

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../extern/fr-repo/fr_util.h

channels/fr/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
add_executable (fr-send sender.c)
2-
target_link_libraries (fr-send LINK_PUBLIC util)
2+
target_link_libraries (fr-send LINK_PUBLIC fr_util)
33
add_executable (fr-recv receiver.c)
4-
target_link_libraries (fr-recv LINK_PUBLIC util)
4+
target_link_libraries (fr-recv LINK_PUBLIC fr_util)

0 commit comments

Comments
 (0)