mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
37 lines
749 B
CMake
37 lines
749 B
CMake
# 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)
|
|
|
|
|
|
add_executable(TestConfigFile
|
|
TestConfigFile.cpp)
|
|
target_link_libraries(TestConfigFile
|
|
hyperion)
|
|
|
|
add_executable(TestRgbImage
|
|
TestRgbImage.cpp)
|
|
target_link_libraries(TestRgbImage
|
|
hyperion-utils)
|
|
|
|
add_executable(TestColorTransform
|
|
TestColorTransform.cpp)
|
|
target_link_libraries(TestColorTransform
|
|
hyperion)
|
|
|
|
# Find the libPNG
|
|
find_package(PNG REQUIRED QUIET)
|
|
|
|
# Add additional includes dirs
|
|
include_directories(${PNG_INCLUDE_DIR})
|
|
|
|
add_executable(TestHyperionPng
|
|
TestHyperionPng.cpp)
|
|
|
|
target_link_libraries(TestHyperionPng
|
|
hyperion-png)
|