Skip to content

Commit

Permalink
Update CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
gianlourbano authored Nov 26, 2024
1 parent f83185f commit 4a2d0aa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,24 +31,24 @@ if(ENABLE_VXLAN)
endif()

add_executable(vde_plug vde_plug.c)
target_link_libraries(vde_plug vdeplug)
target_link_libraries(vde_plug vdeplug vdecommon)

add_executable(dpipe dpipe.c)

add_executable(unixcmd unixcmd.c)
target_link_libraries(unixcmd vdecommon)

add_executable(vde_plug2tap vde_plug2tap.c)
target_link_libraries(vde_plug2tap vdeplug)
target_link_libraries(vde_plug2tap vdeplug vdecommon)

add_executable(vde_autolink vde_autolink.c)
target_link_libraries(vde_autolink vdecommon vdemgmt)

add_executable(wirefilter wirefilter.c)
target_link_libraries(wirefilter vdeplug m)
target_link_libraries(wirefilter vdeplug m vdecommon)

add_executable(vdeterm vdeterm.c)
target_link_libraries(vdeterm vdeplug vdehist)
target_link_libraries(vdeterm vdeplug vdehist vdecomon)

install(TARGETS vde_plug dpipe unixcmd vde_plug2tap vde_autolink wirefilter vdeterm
DESTINATION ${CMAKE_INSTALL_BINDIR})
DESTINATION ${CMAKE_INSTALL_BINDIR})

0 comments on commit 4a2d0aa

Please sign in to comment.