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)

View File

@@ -14,5 +14,5 @@ add_executable(dispmanx2png
dispmanx2png.cpp)
target_link_libraries(dispmanx2png
hyperion
dispmanx-grabber
${QT_LIBRARIES})

View File

@@ -6,8 +6,8 @@
#include <QImage>
#include <QTest>
// Hyperion includes
#include <hyperion/DispmanxFrameGrabber.h>
// Dispmanx grabber includes
#include <dispmanx-grabber/DispmanxFrameGrabber.h>
static bool running = true;