wut/tools/udplogserver/CMakeLists.txt

11 lines
217 B
CMake
Raw Normal View History

2018-05-23 13:35:24 +02:00
project(udplogserver)
add_executable(udplogserver
main.cpp)
2018-05-23 13:35:24 +02:00
if(MSVC)
target_link_libraries(udplogserver PRIVATE ws2_32)
endif()
install(TARGETS udplogserver RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")