Added first quick and dirty implementation of own server (HyperionDispmanX.cpp).

This commit is contained in:
T. van der Zwan
2013-08-01 17:08:58 +02:00
parent a65305dbdb
commit f6672499f5
12 changed files with 167 additions and 67 deletions

37
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,37 @@
# 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)
# Find the libPNG
find_package(PNG REQUIRED QUIET)
# Add additional includes dirs
include_directories(${PNG_INCLUDE_DIR})
if(PNG_FOUND)
add_executable(TestHyperionPng
TestHyperionPng.cpp)
target_link_libraries(TestHyperionPng
hyperion-png)
endif(PNG_FOUND)