Added coding framework for X11

Former-commit-id: 2915defe12e23d328716eade251849d40d098a8a
This commit is contained in:
T. van der Zwan
2014-01-28 08:47:16 +00:00
parent b4c49c9ec4
commit 2d7d18b34d
5 changed files with 85 additions and 6 deletions

View File

@@ -1,5 +1,12 @@
add_subdirectory(hyperiond)
add_subdirectory(hyperion-remote)
if (ENABLE_V4L2)
# Add the 'Video 4 Linux' grabber if it is enabled
if(ENABLE_V4L2)
add_subdirectory(hyperion-v4l2)
endif (ENABLE_V4L2)
endif(ENABLE_V4L2)
# Add the X11 grabber if it is enabled
if(ENABLE_X11)
add_subdirectory(hyperion-x11)
endif(ENABLE_X11)