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
|
||||
kodivideochecker
|
||||
blackborder
|
||||
hyperion-utils
|
||||
leddevice
|
||||
effectengine
|
||||
${QT_LIBRARIES}
|
||||
)
|
||||
|
@ -30,7 +30,8 @@ add_executable(${PROJECT_NAME}
|
||||
)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
commandline
|
||||
effectengine
|
||||
commandline
|
||||
blackborder
|
||||
hyperion-utils
|
||||
protoserver
|
||||
|
@ -31,7 +31,8 @@ add_executable( ${PROJECT_NAME}
|
||||
)
|
||||
|
||||
target_link_libraries( ${PROJECT_NAME}
|
||||
commandline
|
||||
effectengine
|
||||
commandline
|
||||
blackborder
|
||||
hyperion-utils
|
||||
protoserver
|
||||
|
@ -30,7 +30,8 @@ add_executable( ${PROJECT_NAME}
|
||||
)
|
||||
|
||||
target_link_libraries( ${PROJECT_NAME}
|
||||
commandline
|
||||
effectengine
|
||||
commandline
|
||||
blackborder
|
||||
hyperion-utils
|
||||
protoserver
|
||||
|
@ -30,7 +30,8 @@ add_executable( ${PROJECT_NAME}
|
||||
)
|
||||
|
||||
target_link_libraries( ${PROJECT_NAME}
|
||||
commandline
|
||||
effectengine
|
||||
commandline
|
||||
blackborder
|
||||
hyperion-utils
|
||||
protoserver
|
||||
|
@ -26,7 +26,8 @@ add_executable(${PROJECT_NAME}
|
||||
${hyperion-remote_SOURCES})
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
commandline
|
||||
effectengine
|
||||
commandline
|
||||
jsoncpp
|
||||
${QT_LIBRARIES})
|
||||
|
||||
|
@ -32,8 +32,9 @@ add_executable(${PROJECT_NAME}
|
||||
)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
effectengine
|
||||
v4l2-grabber
|
||||
commandline
|
||||
commandline
|
||||
blackborder
|
||||
hyperion-utils
|
||||
protoserver
|
||||
|
@ -31,6 +31,7 @@ add_executable(${PROJECT_NAME}
|
||||
)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
effectengine
|
||||
blackborder
|
||||
commandline
|
||||
hyperion-utils
|
||||
|
@ -4,7 +4,7 @@ include_directories(../libsrc)
|
||||
if(ENABLE_SPIDEV)
|
||||
# Add the simple test executable 'TestSpi'
|
||||
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)
|
||||
|
||||
@ -14,7 +14,9 @@ endif(ENABLE_SPIDEV)
|
||||
add_executable(test_configfile
|
||||
TestConfigFile.cpp)
|
||||
target_link_libraries(test_configfile
|
||||
hyperion)
|
||||
hyperion
|
||||
effectengine
|
||||
)
|
||||
|
||||
add_executable(test_ImageRgb
|
||||
TestRgbImage.cpp)
|
||||
@ -24,24 +26,32 @@ target_link_libraries(test_ImageRgb
|
||||
add_executable(test_colortransform
|
||||
TestColorTransform.cpp)
|
||||
target_link_libraries(test_colortransform
|
||||
hyperion)
|
||||
hyperion
|
||||
effectengine
|
||||
)
|
||||
|
||||
add_executable(test_image2ledsmap
|
||||
TestImage2LedsMap.cpp)
|
||||
target_link_libraries(test_image2ledsmap
|
||||
hyperion)
|
||||
hyperion
|
||||
effectengine
|
||||
)
|
||||
|
||||
if (ENABLE_DISPMANX)
|
||||
add_subdirectory(dispmanx2png)
|
||||
endif (ENABLE_DISPMANX)
|
||||
|
||||
add_executable(test_blackborderdetector TestBlackBorderDetector.cpp)
|
||||
target_link_libraries(test_blackborderdetector hyperion)
|
||||
target_link_libraries(test_blackborderdetector
|
||||
effectengine
|
||||
hyperion)
|
||||
|
||||
add_executable(test_blackborderprocessor
|
||||
TestBlackBorderProcessor.cpp)
|
||||
target_link_libraries(test_blackborderprocessor
|
||||
hyperion)
|
||||
hyperion
|
||||
effectengine
|
||||
)
|
||||
|
||||
add_executable(test_qregexp TestQRegExp.cpp)
|
||||
target_link_libraries(test_qregexp
|
||||
|
Loading…
Reference in New Issue
Block a user