You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

64 line
1.8 KiB

  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2017-03-01T13:52:35
  4. #
  5. #-------------------------------------------------
  6. QT += core gui network
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = CableTestBench
  9. TEMPLATE = app
  10. INCLUDEPATH += Sources/ \
  11. Sources/SeaMaxWin/Include \
  12. Sources/Widgets/
  13. SOURCES += \
  14. Sources/MainWindow.cpp \
  15. Sources/main.cpp \
  16. Sources/MainPage.cpp \
  17. Sources/CableTestBench.cpp \
  18. Sources/VisualInspectionPage.cpp \
  19. Sources/Widgets/ConnectorSelectWidget.cpp \
  20. Sources/CableTestPage.cpp \
  21. Sources/Widgets/ConnectorClickZoneWidget.cpp \
  22. Sources/Widgets/ONOFFStatusWidget.cpp \
  23. Sources/Widgets/ConnectorTestVisualizationWidget.cpp \
  24. Sources/Connector.cpp \
  25. Sources/Cable.cpp \
  26. Sources/VisualInspectionResult.cpp \
  27. Sources/TestReport.cpp \
  28. Sources/CableTestEngine.cpp
  29. HEADERS += \
  30. Sources/MainWindow.h \
  31. Sources/GlobalDefine.h \
  32. Sources/MainPage.h \
  33. Sources/CableTestBench.h \
  34. Sources/VisualInspectionPage.h \
  35. Sources/Widgets/ConnectorSelectWidget.h \
  36. Sources/CableTestPage.h \
  37. Sources/Widgets/ConnectorClickZoneWidget.h \
  38. Sources/CableTestBenchDefs.h \
  39. Sources/Widgets/ONOFFStatusWidget.h \
  40. Sources/Widgets/ConnectorTestVisualizationWidget.h \
  41. Sources/Connector.h \
  42. Sources/Cable.h \
  43. Sources/VisualInspectionResult.h \
  44. Sources/TestReport.h \
  45. Sources/CableTestEngine.h
  46. FORMS += \
  47. Sources/CMainPage.ui \
  48. Sources/VisualInspectionPage.ui \
  49. Sources/CableTestPage.ui
  50. win32:CONFIG(release, debug|release): LIBS += -L$$PWD/Sources/SeaMaxWin/Lib/ -lSeaMAX
  51. else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/Sources/SeaMaxWin/Lib/ -lSeaMAX
  52. INCLUDEPATH += $$PWD/Sources/SeaMaxWin/Lib
  53. DEPENDPATH += $$PWD/Sources/SeaMaxWin/Lib