mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-24 07:27:13 -05: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")
|