restructured project structure: move projects into sub-folders, split dispmanx-grabber from hyperion

This commit is contained in:
johan
2013-08-17 16:12:42 +02:00
parent 16c260b3dc
commit 59e13a2b5f
18 changed files with 85 additions and 56 deletions

View File

@@ -2,30 +2,30 @@
include_directories(../libsrc)
# Add the simple test executable 'TestSpi'
add_executable(TestSpi
add_executable(test_spi
TestSpi.cpp)
target_link_libraries(TestSpi
target_link_libraries(test_spi
hyperion)
add_executable(TestConfigFile
add_executable(test_configfile
TestConfigFile.cpp)
target_link_libraries(TestConfigFile
target_link_libraries(test_configfile
hyperion)
add_executable(TestRgbImage
add_executable(test_rgbimage
TestRgbImage.cpp)
target_link_libraries(TestRgbImage
target_link_libraries(test_rgbimage
hyperion-utils)
add_executable(TestColorTransform
add_executable(test_colortransform
TestColorTransform.cpp)
target_link_libraries(TestColorTransform
target_link_libraries(test_colortransform
hyperion)
add_executable(TestImage2LedsMap
add_executable(test_image2ledsmap
TestImage2LedsMap.cpp)
target_link_libraries(TestImage2LedsMap
target_link_libraries(test_image2ledsmap
hyperion)
add_subdirectory(dispmanx2png)