diff options
author | Aaditya Dhruv <[email protected]> | 2025-07-29 19:57:21 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2025-07-29 19:57:21 -0500 |
commit | 3fd7a1801ea6ed45356f5f9e9a62b147631b7ace (patch) | |
tree | 6b53cb422d3f8f6736718cd46cf4b67216bc840a | |
parent | 91f4f372933790d32d1cafe9dc8c24521857bd1b (diff) |
Update libjunk target link library path
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/CMakeLists.txt | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9991ae1..7713a95 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ project(arpee VERSION 1.0 DESCRIPTION "Respond to arp packets" LANGUAGES C) -message("Building Silph Scope...") +message("Building Arpee...") message("Compiler: ${CMAKE_CXX_COMPILER_ID}") add_subdirectory(src) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a0d8515..48a00de 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,2 @@ add_executable(arpee arpee.h arpee.c) target_link_libraries(arpee PRIVATE junk) -target_link_directories(arpee PRIVATE /home/aaditya/git/libjunk/build) -target_include_directories(arpee PRIVATE /home/aaditya/git/libjunk/include) |