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.

TheGame.pro 825B

12345678910111213141516171819202122232425262728293031323334
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2016-08-31T15:17:33
  4. #
  5. #-------------------------------------------------
  6. QT += core gui opengl
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = TheGame
  9. TEMPLATE = app
  10. CONFIG += c++11
  11. SOURCES += main.cpp\
  12. mainwindow.cpp \
  13. renderwidget.cpp \
  14. openglrenderdevice.cpp
  15. HEADERS += mainwindow.h \
  16. renderwidget.h \
  17. openglrenderdevice.h
  18. FORMS += mainwindow.ui
  19. LIBS += -lGLU
  20. win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../UGameEngine/release/ -lUGameEngine
  21. else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../UGameEngine/debug/ -lUGameEngine
  22. else:unix: LIBS += -L$$OUT_PWD/../UGameEngine/ -lUGameEngine
  23. INCLUDEPATH += $$PWD/../UGameEngine
  24. DEPENDPATH += $$PWD/../UGameEngine