10 lines
165 B
CMake
10 lines
165 B
CMake
|
add_executable(badvpn-udpgw
|
||
|
udpgw.c
|
||
|
)
|
||
|
target_link_libraries(badvpn-udpgw system flow flowextra)
|
||
|
|
||
|
install(
|
||
|
TARGETS badvpn-udpgw
|
||
|
RUNTIME DESTINATION bin
|
||
|
)
|