mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
c65cf872d1
Former-commit-id: 87b89104673285a0a225fef53106f13c17bb22ac
18 lines
260 B
CMake
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)
|