2013-08-05 23:49:17 +02:00
|
|
|
# Needed for testing non-public components
|
|
|
|
include_directories(../libsrc)
|
2013-08-01 17:08:58 +02:00
|
|
|
|
|
|
|
# Add the simple test executable 'TestSpi'
|
2013-08-17 16:12:42 +02:00
|
|
|
add_executable(test_spi
|
2013-08-01 17:08:58 +02:00
|
|
|
TestSpi.cpp)
|
2013-08-17 16:12:42 +02:00
|
|
|
target_link_libraries(test_spi
|
2013-08-13 12:03:00 +02:00
|
|
|
hyperion)
|
|
|
|
|
2013-08-17 16:12:42 +02:00
|
|
|
add_executable(test_configfile
|
2013-08-01 17:08:58 +02:00
|
|
|
TestConfigFile.cpp)
|
2013-08-17 16:12:42 +02:00
|
|
|
target_link_libraries(test_configfile
|
2013-08-01 17:08:58 +02:00
|
|
|
hyperion)
|
|
|
|
|
2013-11-11 10:00:37 +01:00
|
|
|
add_executable(test_ImageRgb
|
2013-08-03 23:24:22 +02:00
|
|
|
TestRgbImage.cpp)
|
2013-11-11 10:00:37 +01:00
|
|
|
target_link_libraries(test_ImageRgb
|
2013-08-03 23:24:22 +02:00
|
|
|
hyperion-utils)
|
2013-08-01 17:08:58 +02:00
|
|
|
|
2013-08-17 16:12:42 +02:00
|
|
|
add_executable(test_colortransform
|
2013-08-13 12:03:00 +02:00
|
|
|
TestColorTransform.cpp)
|
2013-08-17 16:12:42 +02:00
|
|
|
target_link_libraries(test_colortransform
|
2013-08-13 12:03:00 +02:00
|
|
|
hyperion)
|
2013-08-05 23:49:17 +02:00
|
|
|
|
2013-08-17 16:12:42 +02:00
|
|
|
add_executable(test_image2ledsmap
|
2013-08-15 21:11:02 +02:00
|
|
|
TestImage2LedsMap.cpp)
|
2013-08-17 16:12:42 +02:00
|
|
|
target_link_libraries(test_image2ledsmap
|
2013-08-15 21:11:02 +02:00
|
|
|
hyperion)
|
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
|
|
|
|
|
|
|
add_executable(test_blackborderdetector
|
|
|
|
TestBlackBorderDetector.cpp)
|
|
|
|
target_link_libraries(test_blackborderdetector
|
|
|
|
hyperion)
|
2013-08-21 22:44:17 +02:00
|
|
|
|
|
|
|
add_executable(test_blackborderprocessor
|
|
|
|
TestBlackBorderProcessor.cpp)
|
|
|
|
target_link_libraries(test_blackborderprocessor
|
|
|
|
hyperion)
|
2013-10-07 21:15:33 +02:00
|
|
|
|
|
|
|
add_executable(spidev_test spidev_test.c)
|
2013-10-11 10:06:24 +02:00
|
|
|
add_executable(gpio2spi switchPinCtrl.c)
|