make shared libs work again (#239)

This commit is contained in:
redPanther 2016-09-13 17:39:01 +02:00 committed by GitHub
parent 52283b3257
commit ccc50899fb
9 changed files with 29 additions and 14 deletions

View File

@ -58,10 +58,8 @@ add_library(hyperion
)
target_link_libraries(hyperion
kodivideochecker
blackborder
hyperion-utils
leddevice
effectengine
${QT_LIBRARIES}
)

View File

@ -30,7 +30,8 @@ add_executable(${PROJECT_NAME}
)
target_link_libraries(${PROJECT_NAME}
commandline
effectengine
commandline
blackborder
hyperion-utils
protoserver

View File

@ -31,7 +31,8 @@ add_executable( ${PROJECT_NAME}
)
target_link_libraries( ${PROJECT_NAME}
commandline
effectengine
commandline
blackborder
hyperion-utils
protoserver

View File

@ -30,7 +30,8 @@ add_executable( ${PROJECT_NAME}
)
target_link_libraries( ${PROJECT_NAME}
commandline
effectengine
commandline
blackborder
hyperion-utils
protoserver

View File

@ -30,7 +30,8 @@ add_executable( ${PROJECT_NAME}
)
target_link_libraries( ${PROJECT_NAME}
commandline
effectengine
commandline
blackborder
hyperion-utils
protoserver

View File

@ -26,7 +26,8 @@ add_executable(${PROJECT_NAME}
${hyperion-remote_SOURCES})
target_link_libraries(${PROJECT_NAME}
commandline
effectengine
commandline
jsoncpp
${QT_LIBRARIES})

View File

@ -32,8 +32,9 @@ add_executable(${PROJECT_NAME}
)
target_link_libraries(${PROJECT_NAME}
effectengine
v4l2-grabber
commandline
commandline
blackborder
hyperion-utils
protoserver

View File

@ -31,6 +31,7 @@ add_executable(${PROJECT_NAME}
)
target_link_libraries(${PROJECT_NAME}
effectengine
blackborder
commandline
hyperion-utils

View File

@ -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