Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « udpgw - github.com/ambrop72/badvpn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f77d7dc03186d90deb9eb4801d3fab04156ae66 (plain)
1
2
3
4
5
6
7
8
9
add_executable(badvpn-udpgw
    udpgw.c
)
target_link_libraries(badvpn-udpgw system flow flowextra)

install(
    TARGETS badvpn-udpgw
    RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)