2014-01-10 16:49:03 +01:00
|
|
|
# Needed for testing non-public components
|
2013-08-05 23:49:17 +02:00
|
|
|
include_directories(../libsrc)
|
2013-08-01 17:08:58 +02:00
|
|
|
|
2017-08-01 15:42:36 +02:00
|
|
|
find_package(Qt5Widgets REQUIRED)
|
|
|
|
|
|
|
|
MACRO (link_to_hyperion TARGET)
|
|
|
|
target_link_libraries( ${TARGET} blackborder leddevice jsonserver hyperion-utils hyperion effectengine )
|
|
|
|
ENDMACRO()
|
|
|
|
|
2013-12-17 22:53:16 +01:00
|
|
|
if(ENABLE_SPIDEV)
|
|
|
|
# Add the simple test executable 'TestSpi'
|
|
|
|
add_executable(test_spi TestSpi.cpp)
|
2017-08-01 15:42:36 +02:00
|
|
|
link_to_hyperion(test_spi)
|
2013-12-17 22:53:16 +01:00
|
|
|
add_executable(spidev_test spidev_test.c)
|
|
|
|
add_executable(gpio2spi switchPinCtrl.c)
|
|
|
|
endif(ENABLE_SPIDEV)
|
2013-08-13 12:03:00 +02:00
|
|
|
|
2017-08-01 15:42:36 +02:00
|
|
|
add_executable(test_configfile TestConfigFile.cpp)
|
|
|
|
link_to_hyperion(test_configfile)
|
2013-08-01 17:08:58 +02:00
|
|
|
|
2017-08-01 15:42:36 +02:00
|
|
|
add_executable(test_ImageRgb TestRgbImage.cpp)
|
|
|
|
link_to_hyperion(test_ImageRgb)
|
2013-08-01 17:08:58 +02:00
|
|
|
|
2017-08-01 15:42:36 +02:00
|
|
|
add_executable(test_image2ledsmap TestImage2LedsMap.cpp)
|
|
|
|
link_to_hyperion(test_image2ledsmap)
|
2013-08-01 17:08:58 +02:00
|
|
|
|
2013-11-19 23:02:41 +01:00
|
|
|
if (ENABLE_DISPMANX)
|
|
|
|
add_subdirectory(dispmanx2png)
|
|
|
|
endif (ENABLE_DISPMANX)
|
2013-08-21 16:25:27 +02:00
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
add_executable(test_blackborderdetector TestBlackBorderDetector.cpp)
|
2017-08-01 15:42:36 +02:00
|
|
|
link_to_hyperion(test_blackborderdetector)
|
2013-08-21 22:44:17 +02:00
|
|
|
|
2017-08-01 15:42:36 +02:00
|
|
|
add_executable(test_blackborderprocessor TestBlackBorderProcessor.cpp)
|
|
|
|
link_to_hyperion(test_blackborderprocessor)
|
2013-10-07 21:15:33 +02:00
|
|
|
|
2013-11-22 11:44:41 +01:00
|
|
|
add_executable(test_qregexp TestQRegExp.cpp)
|
2017-08-01 15:42:36 +02:00
|
|
|
target_link_libraries(test_qregexp Qt5::Widgets)
|
2013-12-20 19:46:03 +01:00
|
|
|
|
|
|
|
add_executable(test_qtscreenshot TestQtScreenshot.cpp)
|
2017-08-01 15:42:36 +02:00
|
|
|
target_link_libraries(test_qtscreenshot Qt5::Widgets)
|
2016-01-06 17:31:23 +01:00
|
|
|
|
2014-02-25 22:08:54 +01:00
|
|
|
if(ENABLE_X11)
|
2017-08-01 15:42:36 +02:00
|
|
|
find_package(X11 REQUIRED)
|
|
|
|
add_executable(test_x11performance TestX11Performance.cpp)
|
|
|
|
target_link_libraries(test_x11performance ${X11_LIBRARIES} Qt5::Widgets)
|
2014-02-25 22:08:54 +01:00
|
|
|
endif(ENABLE_X11)
|