Skip to content

Commit 91e311d

Browse files
authored
Merge pull request #2 from 0x161e-swei/post-submod
Add back pp-llc specific compile flags
2 parents 0f9999e + 9247017 commit 91e311d

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

channels/pp-llc/CMakeLists.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1+
set(CMAKE_C_FLAGS "-Wall -Wextra -O1 -fPIC")
2+
# set(CMAKE_VERBOSE_MAKEFILE ON)
13
add_executable (pp-llc-send sender.c)
24
target_link_libraries (pp-llc-send LINK_PUBLIC util)
35
add_executable (pp-llc-recv receiver.c)
46
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

Comments
 (0)