mirror of
https://github.com/aaru-dps/aaruremote.git
synced 2025-12-16 19:24:37 +00:00
11 lines
347 B
CMake
11 lines
347 B
CMake
project("dicremote-win32" C)
|
|
|
|
if (NOT "${CMAKE_SYSTEM}" MATCHES "Windows")
|
|
return()
|
|
endif ()
|
|
|
|
set(PLATFORM_SOURCES "win32.h" network.c hello.c "win32.c" list_devices.c ata.c device.c ieee1394.c pcmcia.c scsi.c sdhci.c usb.c)
|
|
|
|
add_executable(dicremote ${PLATFORM_SOURCES})
|
|
|
|
target_link_libraries(dicremote dicremotecore ws2_32 iphlpapi version) |