mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-14 02:51:51 +01:00
11 lines
217 B
CMake
11 lines
217 B
CMake
project(udplogserver)
|
|
|
|
add_executable(udplogserver
|
|
main.cpp)
|
|
|
|
if(MSVC)
|
|
target_link_libraries(udplogserver PRIVATE ws2_32)
|
|
endif()
|
|
|
|
install(TARGETS udplogserver RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|