hyperion.ng/test/CMakeLists.txt

48 lines
942 B
CMake
Raw Normal View History

2013-08-05 23:49:17 +02:00
# Needed for testing non-public components
include_directories(../libsrc)
# Add the simple test executable 'TestSpi'
add_executable(TestSpi
TestSpi.cpp)
target_link_libraries(TestSpi
hyperion
hyperion-utils)
add_executable(TestConfigFile
TestConfigFile.cpp)
target_link_libraries(TestConfigFile
hyperion-utils
hyperion)
add_executable(Test2BobLight
Test2BobLight.cpp)
target_link_libraries(Test2BobLight
bob2hyperion)
add_executable(TestRgbImage
TestRgbImage.cpp)
target_link_libraries(TestRgbImage
hyperion-utils)
2013-08-05 23:49:17 +02:00
add_executable(TestColorTransform
TestColorTransform.cpp)
target_link_libraries(TestColorTransform
hyperion)
# Find the libPNG
find_package(PNG REQUIRED QUIET)
#if(PNG_FOUND)
2013-08-05 23:49:17 +02:00
# Add additional includes dirs
include_directories(${PNG_INCLUDE_DIR})
2013-08-05 23:49:17 +02:00
add_executable(TestHyperionPng
TestHyperionPng.cpp)
target_link_libraries(TestHyperionPng
hyperion-png)
#endif(PNG_FOUND)