28 lines
762 B
Prolog
28 lines
762 B
Prolog
QT += widgets
|
|
requires(qtConfig(filedialog))
|
|
qtHaveModule(printsupport): QT += gui printsupport
|
|
|
|
HEADERS = \
|
|
imagebuffer.h \
|
|
myimage.h \
|
|
pylonrecorder.h \
|
|
pylonwrapper.h
|
|
SOURCES = \
|
|
imagebuffer.cpp \
|
|
myimage.cpp \
|
|
pylonrecorder.cpp \
|
|
pylonwrapper.cpp \
|
|
main.cpp
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/widgets/widgets/imageviewer
|
|
INSTALLS += target
|
|
|
|
unix:!macx: LIBS += -L$$/opt/pylon5/lib64/ -Wl,-E -lpylonbase -lpylonutility -lGenApi_gcc_v3_1_Basler_pylon -lGCBase_gcc_v3_1_Basler_pylon
|
|
|
|
INCLUDEPATH += $$/opt/pylon5/include
|
|
DEPENDPATH += $$/opt/pylon5/include
|
|
|
|
RESOURCES += \
|
|
resources.qrc
|