diff options
author | Dimitri Staessens <dimitri.staessens@ugent.be> | 2017-11-29 18:23:49 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-11-29 18:37:02 +0100 |
commit | cff56ac00e82c001659f54a61942ec55dac13268 (patch) | |
tree | b208fa39233a934ea0d4cc5290a2ba210ea2d513 /src/ipcpd | |
parent | a781a1611f6b1efe9711dab96dee57ea785280fb (diff) | |
download | ouroboros-cff56ac00e82c001659f54a61942ec55dac13268.tar.gz ouroboros-cff56ac00e82c001659f54a61942ec55dac13268.zip |
build: Remove unnecessary linker directives
The ouroboros-dev library links against ouroboros-common.
Signed-off-by: Dimitri Staessens <dimitri.staessens@ugent.be>
Signed-off-by: Sander Vrijders <sander.vrijders@ugent.be>
Diffstat (limited to 'src/ipcpd')
-rw-r--r-- | src/ipcpd/shim-eth-llc/CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/ipcpd/shim-udp/CMakeLists.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ipcpd/shim-eth-llc/CMakeLists.txt b/src/ipcpd/shim-eth-llc/CMakeLists.txt index 4c126f6f..56e25457 100644 --- a/src/ipcpd/shim-eth-llc/CMakeLists.txt +++ b/src/ipcpd/shim-eth-llc/CMakeLists.txt @@ -98,8 +98,8 @@ if (HAVE_LLC) ${NETMAP_C_INCLUDE_DIR}) endif () - target_link_libraries(ipcpd-shim-eth-llc LINK_PUBLIC ouroboros-common - ouroboros-dev ${PROTOBUF_C_LIBRARY}) + target_link_libraries(ipcpd-shim-eth-llc LINK_PUBLIC ouroboros-dev + ${PROTOBUF_C_LIBRARY}) include(AddCompileFlags) if (CMAKE_BUILD_TYPE MATCHES "Debug*") diff --git a/src/ipcpd/shim-udp/CMakeLists.txt b/src/ipcpd/shim-udp/CMakeLists.txt index 0319e63d..cc419fd0 100644 --- a/src/ipcpd/shim-udp/CMakeLists.txt +++ b/src/ipcpd/shim-udp/CMakeLists.txt @@ -23,7 +23,7 @@ set(SHIM_UDP_SOURCES add_executable(ipcpd-shim-udp ${SHIM_UDP_SOURCES} ${IPCP_SOURCES} ${SHIM_UDP_PROTO_SRCS}) -target_link_libraries(ipcpd-shim-udp LINK_PUBLIC ouroboros-common ouroboros-dev +target_link_libraries(ipcpd-shim-udp LINK_PUBLIC ouroboros-dev ${PROTOBUF_C_LIBRARY}) # Find the nsupdate executable |