mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
make shared libs work again (#239)
This commit is contained in:
parent
52283b3257
commit
ccc50899fb
@ -58,10 +58,8 @@ add_library(hyperion
|
|||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(hyperion
|
target_link_libraries(hyperion
|
||||||
kodivideochecker
|
|
||||||
blackborder
|
blackborder
|
||||||
hyperion-utils
|
hyperion-utils
|
||||||
leddevice
|
leddevice
|
||||||
effectengine
|
|
||||||
${QT_LIBRARIES}
|
${QT_LIBRARIES}
|
||||||
)
|
)
|
||||||
|
@ -30,6 +30,7 @@ add_executable(${PROJECT_NAME}
|
|||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(${PROJECT_NAME}
|
target_link_libraries(${PROJECT_NAME}
|
||||||
|
effectengine
|
||||||
commandline
|
commandline
|
||||||
blackborder
|
blackborder
|
||||||
hyperion-utils
|
hyperion-utils
|
||||||
|
@ -31,6 +31,7 @@ add_executable( ${PROJECT_NAME}
|
|||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries( ${PROJECT_NAME}
|
target_link_libraries( ${PROJECT_NAME}
|
||||||
|
effectengine
|
||||||
commandline
|
commandline
|
||||||
blackborder
|
blackborder
|
||||||
hyperion-utils
|
hyperion-utils
|
||||||
|
@ -30,6 +30,7 @@ add_executable( ${PROJECT_NAME}
|
|||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries( ${PROJECT_NAME}
|
target_link_libraries( ${PROJECT_NAME}
|
||||||
|
effectengine
|
||||||
commandline
|
commandline
|
||||||
blackborder
|
blackborder
|
||||||
hyperion-utils
|
hyperion-utils
|
||||||
|
@ -30,6 +30,7 @@ add_executable( ${PROJECT_NAME}
|
|||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries( ${PROJECT_NAME}
|
target_link_libraries( ${PROJECT_NAME}
|
||||||
|
effectengine
|
||||||
commandline
|
commandline
|
||||||
blackborder
|
blackborder
|
||||||
hyperion-utils
|
hyperion-utils
|
||||||
|
@ -26,6 +26,7 @@ add_executable(${PROJECT_NAME}
|
|||||||
${hyperion-remote_SOURCES})
|
${hyperion-remote_SOURCES})
|
||||||
|
|
||||||
target_link_libraries(${PROJECT_NAME}
|
target_link_libraries(${PROJECT_NAME}
|
||||||
|
effectengine
|
||||||
commandline
|
commandline
|
||||||
jsoncpp
|
jsoncpp
|
||||||
${QT_LIBRARIES})
|
${QT_LIBRARIES})
|
||||||
|
@ -32,6 +32,7 @@ add_executable(${PROJECT_NAME}
|
|||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(${PROJECT_NAME}
|
target_link_libraries(${PROJECT_NAME}
|
||||||
|
effectengine
|
||||||
v4l2-grabber
|
v4l2-grabber
|
||||||
commandline
|
commandline
|
||||||
blackborder
|
blackborder
|
||||||
|
@ -31,6 +31,7 @@ add_executable(${PROJECT_NAME}
|
|||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(${PROJECT_NAME}
|
target_link_libraries(${PROJECT_NAME}
|
||||||
|
effectengine
|
||||||
blackborder
|
blackborder
|
||||||
commandline
|
commandline
|
||||||
hyperion-utils
|
hyperion-utils
|
||||||
|
@ -4,7 +4,7 @@ include_directories(../libsrc)
|
|||||||
if(ENABLE_SPIDEV)
|
if(ENABLE_SPIDEV)
|
||||||
# Add the simple test executable 'TestSpi'
|
# Add the simple test executable 'TestSpi'
|
||||||
add_executable(test_spi TestSpi.cpp)
|
add_executable(test_spi TestSpi.cpp)
|
||||||
target_link_libraries(test_spi hyperion)
|
target_link_libraries(test_spi hyperion effectengine)
|
||||||
|
|
||||||
add_executable(spidev_test spidev_test.c)
|
add_executable(spidev_test spidev_test.c)
|
||||||
|
|
||||||
@ -14,7 +14,9 @@ endif(ENABLE_SPIDEV)
|
|||||||
add_executable(test_configfile
|
add_executable(test_configfile
|
||||||
TestConfigFile.cpp)
|
TestConfigFile.cpp)
|
||||||
target_link_libraries(test_configfile
|
target_link_libraries(test_configfile
|
||||||
hyperion)
|
hyperion
|
||||||
|
effectengine
|
||||||
|
)
|
||||||
|
|
||||||
add_executable(test_ImageRgb
|
add_executable(test_ImageRgb
|
||||||
TestRgbImage.cpp)
|
TestRgbImage.cpp)
|
||||||
@ -24,24 +26,32 @@ target_link_libraries(test_ImageRgb
|
|||||||
add_executable(test_colortransform
|
add_executable(test_colortransform
|
||||||
TestColorTransform.cpp)
|
TestColorTransform.cpp)
|
||||||
target_link_libraries(test_colortransform
|
target_link_libraries(test_colortransform
|
||||||
hyperion)
|
hyperion
|
||||||
|
effectengine
|
||||||
|
)
|
||||||
|
|
||||||
add_executable(test_image2ledsmap
|
add_executable(test_image2ledsmap
|
||||||
TestImage2LedsMap.cpp)
|
TestImage2LedsMap.cpp)
|
||||||
target_link_libraries(test_image2ledsmap
|
target_link_libraries(test_image2ledsmap
|
||||||
hyperion)
|
hyperion
|
||||||
|
effectengine
|
||||||
|
)
|
||||||
|
|
||||||
if (ENABLE_DISPMANX)
|
if (ENABLE_DISPMANX)
|
||||||
add_subdirectory(dispmanx2png)
|
add_subdirectory(dispmanx2png)
|
||||||
endif (ENABLE_DISPMANX)
|
endif (ENABLE_DISPMANX)
|
||||||
|
|
||||||
add_executable(test_blackborderdetector TestBlackBorderDetector.cpp)
|
add_executable(test_blackborderdetector TestBlackBorderDetector.cpp)
|
||||||
target_link_libraries(test_blackborderdetector hyperion)
|
target_link_libraries(test_blackborderdetector
|
||||||
|
effectengine
|
||||||
|
hyperion)
|
||||||
|
|
||||||
add_executable(test_blackborderprocessor
|
add_executable(test_blackborderprocessor
|
||||||
TestBlackBorderProcessor.cpp)
|
TestBlackBorderProcessor.cpp)
|
||||||
target_link_libraries(test_blackborderprocessor
|
target_link_libraries(test_blackborderprocessor
|
||||||
hyperion)
|
hyperion
|
||||||
|
effectengine
|
||||||
|
)
|
||||||
|
|
||||||
add_executable(test_qregexp TestQRegExp.cpp)
|
add_executable(test_qregexp TestQRegExp.cpp)
|
||||||
target_link_libraries(test_qregexp
|
target_link_libraries(test_qregexp
|
||||||
|
Loading…
Reference in New Issue
Block a user