Files
aaruremote/win32/CMakeLists.txt

11 lines
291 B
CMake
Raw Normal View History

2019-10-26 22:26:53 +01:00
project("dicremote-win32" C)
if (NOT "${CMAKE_SYSTEM}" MATCHES "Windows")
return()
endif ()
2019-10-27 03:30:13 +00:00
set(PLATFORM_SOURCES "win32.h" network.c hello.c "win32.c" list_devices.c)
2019-10-26 22:26:53 +01:00
add_executable(dicremote ${PLATFORM_SOURCES})
2019-10-27 01:59:05 +01:00
target_link_libraries(dicremote dicremotecore ws2_32 iphlpapi version)