GoBang.pro 628 B

1234567891011121314151617181920212223242526
  1. QT += core gui
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  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. chessitem.cpp \
  9. main.cpp \
  10. mainwindow.cpp
  11. HEADERS += \
  12. chessitem.h \
  13. mainwindow.h
  14. FORMS += \
  15. mainwindow.ui
  16. # Default rules for deployment.
  17. qnx: target.path = /tmp/$${TARGET}/bin
  18. else: unix:!android: target.path = /opt/$${TARGET}/bin
  19. !isEmpty(target.path): INSTALLS += target