We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0f9999e + 9247017 commit 91e311dCopy full SHA for 91e311d
2 files changed
channels/pp-llc/CMakeLists.txt
@@ -1,4 +1,13 @@
1
+set(CMAKE_C_FLAGS "-Wall -Wextra -O1 -fPIC")
2
+# set(CMAKE_VERBOSE_MAKEFILE ON)
3
add_executable (pp-llc-send sender.c)
4
target_link_libraries (pp-llc-send LINK_PUBLIC util)
5
add_executable (pp-llc-recv receiver.c)
6
target_link_libraries (pp-llc-recv LINK_PUBLIC util)
7
+
8
+add_executable (pp-llc-send_debug sender.c)
9
+add_executable (pp-llc-recv_debug receiver.c)
10
+target_link_libraries (pp-llc-send_debug LINK_PUBLIC util)
11
+target_link_libraries (pp-llc-recv_debug LINK_PUBLIC util)
12
+set_target_properties(pp-llc-send_debug PROPERTIES COMPILE_FLAGS "-DDEBUG")
13
+set_target_properties(pp-llc-recv_debug PROPERTIES COMPILE_FLAGS "-DDEBUG")
extern/pp-llc-repo
0 commit comments