mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
5c7085439b
* update * resolve qt5w * test * Go down cmake python search won the price for crazy lib searches! * 2.7 python forced, RPATH * upstream * ... * update * ... * 2.7.12 py it picks random versions... * max 7.12.5.... * Test 14.04 tests
25 lines
582 B
CMake
25 lines
582 B
CMake
|
|
# Define the current source locations
|
|
set(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/boblightserver)
|
|
set(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/boblightserver)
|
|
|
|
set(BoblightServer_HEADERS
|
|
${CURRENT_HEADER_DIR}/BoblightServer.h
|
|
${CURRENT_SOURCE_DIR}/BoblightClientConnection.h
|
|
)
|
|
|
|
set(BoblightServer_SOURCES
|
|
${CURRENT_SOURCE_DIR}/BoblightServer.cpp
|
|
${CURRENT_SOURCE_DIR}/BoblightClientConnection.cpp
|
|
)
|
|
|
|
add_library(boblightserver
|
|
${BoblightServer_HEADERS}
|
|
${BoblightServer_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(boblightserver
|
|
hyperion
|
|
hyperion-utils
|
|
${QT_LIBRARIES})
|