mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
62291adb52
Former-commit-id: 4763dcd03897ee85df068d9f7dc4a5954cbb1a4f
106 lines
2.9 KiB
CMake
106 lines
2.9 KiB
CMake
|
|
# Define the current source locations
|
|
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/leddevice)
|
|
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/leddevice)
|
|
|
|
#add libusb and pthreads (required for the Lighpack usb device)
|
|
find_package(libusb-1.0 REQUIRED)
|
|
find_package(Threads REQUIRED)
|
|
|
|
include_directories(
|
|
../../include/hidapi
|
|
${LIBUSB_1_INCLUDE_DIRS}) # for Lightpack device
|
|
|
|
# Group the headers that go through the MOC compiler
|
|
SET(Leddevice_QT_HEADERS
|
|
${CURRENT_SOURCE_DIR}/LedDeviceAdalight.h
|
|
)
|
|
|
|
SET(Leddevice_HEADERS
|
|
${CURRENT_HEADER_DIR}/LedDevice.h
|
|
${CURRENT_HEADER_DIR}/LedDeviceFactory.h
|
|
|
|
${CURRENT_SOURCE_DIR}/LedRs232Device.h
|
|
|
|
${CURRENT_SOURCE_DIR}/LedDeviceLightpack.h
|
|
${CURRENT_SOURCE_DIR}/LedDeviceMultiLightpack.h
|
|
${CURRENT_SOURCE_DIR}/LedDevicePaintpack.h
|
|
${CURRENT_SOURCE_DIR}/LedDevicePiBlaster.h
|
|
${CURRENT_SOURCE_DIR}/LedDeviceSedu.h
|
|
${CURRENT_SOURCE_DIR}/LedDeviceTest.h
|
|
${CURRENT_SOURCE_DIR}/LedDeviceHyperionUsbasp.h
|
|
)
|
|
|
|
SET(Leddevice_SOURCES
|
|
${CURRENT_SOURCE_DIR}/LedDeviceFactory.cpp
|
|
|
|
${CURRENT_SOURCE_DIR}/LedRs232Device.cpp
|
|
|
|
${CURRENT_SOURCE_DIR}/LedDeviceAdalight.cpp
|
|
${CURRENT_SOURCE_DIR}/LedDeviceLightpack.cpp
|
|
${CURRENT_SOURCE_DIR}/LedDeviceMultiLightpack.cpp
|
|
${CURRENT_SOURCE_DIR}/LedDevicePaintpack.cpp
|
|
${CURRENT_SOURCE_DIR}/LedDevicePiBlaster.cpp
|
|
${CURRENT_SOURCE_DIR}/LedDeviceSedu.cpp
|
|
${CURRENT_SOURCE_DIR}/LedDeviceTest.cpp
|
|
${CURRENT_SOURCE_DIR}/LedDeviceHyperionUsbasp.cpp
|
|
)
|
|
|
|
if(ENABLE_SPIDEV)
|
|
SET(Leddevice_HEADERS
|
|
${Leddevice_HEADERS}
|
|
${CURRENT_SOURCE_DIR}/LedSpiDevice.h
|
|
${CURRENT_SOURCE_DIR}/LedDeviceLpd6803.h
|
|
${CURRENT_SOURCE_DIR}/LedDeviceLpd8806.h
|
|
${CURRENT_SOURCE_DIR}/LedDeviceP9813.h
|
|
${CURRENT_SOURCE_DIR}/LedDeviceWs2801.h
|
|
)
|
|
SET(Leddevice_SOURCES
|
|
${Leddevice_SOURCES}
|
|
${CURRENT_SOURCE_DIR}/LedSpiDevice.cpp
|
|
${CURRENT_SOURCE_DIR}/LedDeviceLpd6803.cpp
|
|
${CURRENT_SOURCE_DIR}/LedDeviceLpd8806.cpp
|
|
${CURRENT_SOURCE_DIR}/LedDeviceP9813.cpp
|
|
${CURRENT_SOURCE_DIR}/LedDeviceWs2801.cpp
|
|
)
|
|
endif(ENABLE_SPIDEV)
|
|
|
|
if(ENABLE_TINKERFORGE)
|
|
SET(Leddevice_HEADERS
|
|
${Leddevice_HEADERS}
|
|
${CURRENT_SOURCE_DIR}/LedDeviceTinkerforge.h
|
|
)
|
|
SET(Leddevice_SOURCES
|
|
${Leddevice_SOURCES}
|
|
${CURRENT_SOURCE_DIR}/LedDeviceTinkerforge.cpp
|
|
)
|
|
endif(ENABLE_TINKERFORGE)
|
|
|
|
|
|
QT4_WRAP_CPP(Leddevice_HEADERS_MOC ${Leddevice_QT_HEADERS})
|
|
|
|
add_library(leddevice
|
|
${Leddevice_HEADERS}
|
|
${Leddevice_QT_HEADERS}
|
|
${Leddevice_HEADERS_MOC}
|
|
${Leddevice_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(leddevice
|
|
hyperion-utils
|
|
serialport
|
|
${LIBUSB_1_LIBRARIES} #apt-get install libusb-1.0-0-dev
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
${QT_LIBRARIES}
|
|
)
|
|
|
|
if(ENABLE_TINKERFORGE)
|
|
target_link_libraries(leddevice tinkerforge)
|
|
endif()
|
|
|
|
if(APPLE)
|
|
target_link_libraries(leddevice hidapi-mac)
|
|
else()
|
|
target_link_libraries(leddevice hidapi-libusb)
|
|
endif()
|