PcbDetectionSoftware.pro 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. QT += core gui
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
  3. CONFIG += c++11
  4. # You can make your code fail to compile if it uses deprecated APIs.
  5. # In order to do so, uncomment the following line.
  6. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  7. SOURCES += \
  8. PrintAPI.cpp \
  9. QtCircleROI.cpp \
  10. QtImageItem.cpp \
  11. customegraphicsview.cpp \
  12. excelapi.cpp \
  13. main.cpp \
  14. mindcamera.cpp \
  15. widget.cpp
  16. HEADERS += \
  17. PrintAPI.h \
  18. QtCircleROI.h \
  19. QtImageItem.h \
  20. customegraphicsview.h \
  21. excelapi.h \
  22. mindcamera.h \
  23. widget.h
  24. FORMS += \
  25. widget.ui
  26. # Default rules for deployment.
  27. qnx: target.path = /tmp/$${TARGET}/bin
  28. else: unix:!android: target.path = /opt/$${TARGET}/bin
  29. !isEmpty(target.path): INSTALLS += target
  30. LIBS += -L$$PWD/lib/ -lMVCAMSDK_X64 -lhalcon -lhalconcpp
  31. INCLUDEPATH += $$PWD/include
  32. INCLUDEPATH += $$PWD/include/halcon
  33. INCLUDEPATH += $$PWD/include/halconcpp
  34. RC_FILE = app.rc
  35. RESOURCES += \
  36. image.qrc