mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 11:32:38 +01:00
15 lines
318 B
CMake
15 lines
318 B
CMake
project(udplogserver)
|
|
|
|
file(GLOB_RECURSE SOURCE_FILES *.cpp)
|
|
file(GLOB_RECURSE HEADER_FILES *.h)
|
|
|
|
add_executable(udplogserver
|
|
${SOURCE_FILES}
|
|
${HEADER_FILES})
|
|
|
|
if(MSVC)
|
|
target_link_libraries(udplogserver PRIVATE ws2_32)
|
|
endif()
|
|
|
|
install(TARGETS udplogserver RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|