mirror of
https://github.com/aaru-dps/aaruremote.git
synced 2025-12-16 19:24:37 +00:00
Don't name executable with architecture.
This commit is contained in:
@@ -9,10 +9,10 @@ set(PLATFORM_SOURCES list_devices.c linux.h device.c scsi.c usb.c ieee1394.c pcm
|
||||
CHECK_LIBRARY_EXISTS("udev" udev_new "" HAS_UDEV)
|
||||
CHECK_INCLUDE_FILES("linux/mmc/ioctl.h" HAVE_MMC_IOCTL_H)
|
||||
|
||||
add_executable(dicremote-${CMAKE_SYSTEM_PROCESSOR} ${PLATFORM_SOURCES})
|
||||
add_executable(dicremote ${PLATFORM_SOURCES})
|
||||
|
||||
if (HAS_UDEV)
|
||||
target_link_libraries(dicremote-${CMAKE_SYSTEM_PROCESSOR} udev)
|
||||
target_link_libraries(dicremote udev)
|
||||
add_definitions(-DHAS_UDEV)
|
||||
endif ()
|
||||
|
||||
@@ -20,4 +20,4 @@ if (HAVE_MMC_IOCTL_H)
|
||||
add_definitions(-DHAS_UAPI_MMC)
|
||||
endif ()
|
||||
|
||||
target_link_libraries(dicremote-${CMAKE_SYSTEM_PROCESSOR} dicremote)
|
||||
target_link_libraries(dicremote dicremotecore)
|
||||
Reference in New Issue
Block a user