mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
32 lines
668 B
CMake
32 lines
668 B
CMake
# Needed for testing non-public components
|
|
include_directories(../libsrc)
|
|
|
|
# Add the simple test executable 'TestSpi'
|
|
add_executable(test_spi
|
|
TestSpi.cpp)
|
|
target_link_libraries(test_spi
|
|
hyperion)
|
|
|
|
|
|
add_executable(test_configfile
|
|
TestConfigFile.cpp)
|
|
target_link_libraries(test_configfile
|
|
hyperion)
|
|
|
|
add_executable(test_rgbimage
|
|
TestRgbImage.cpp)
|
|
target_link_libraries(test_rgbimage
|
|
hyperion-utils)
|
|
|
|
add_executable(test_colortransform
|
|
TestColorTransform.cpp)
|
|
target_link_libraries(test_colortransform
|
|
hyperion)
|
|
|
|
add_executable(test_image2ledsmap
|
|
TestImage2LedsMap.cpp)
|
|
target_link_libraries(test_image2ledsmap
|
|
hyperion)
|
|
|
|
add_subdirectory(dispmanx2png)
|