hyperion.ng/test/v4l2_to_png/CMakeLists.txt
johan c65cf872d1 renamed v4l2_to_png
Former-commit-id: 87b89104673285a0a225fef53106f13c17bb22ac
2014-01-12 19:54:10 +01:00

18 lines
260 B
CMake

# find Qt4
find_package(Qt4 REQUIRED QtCore QtGui)
include_directories(${QT_INCLUDES})
add_executable(v4l2_to_png
v4l2_to_png.cpp
V4L2Grabber.h
V4L2Grabber.cpp)
target_link_libraries(v4l2_to_png
getoptPlusPlus)
qt4_use_modules(v4l2_to_png
Core
Gui)