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 809B

123456789101112131415161718192021222324252627282930313233
  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. SOURCES += main.cpp\
  11. mainwindow.cpp \
  12. renderwidget.cpp \
  13. openglrenderdevice.cpp
  14. HEADERS += mainwindow.h \
  15. renderwidget.h \
  16. openglrenderdevice.h
  17. FORMS += mainwindow.ui
  18. LIBS += -lGLU
  19. win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../UGameEngine/release/ -lUGameEngine
  20. else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../UGameEngine/debug/ -lUGameEngine
  21. else:unix: LIBS += -L$$OUT_PWD/../UGameEngine/ -lUGameEngine
  22. INCLUDEPATH += $$PWD/../UGameEngine
  23. DEPENDPATH += $$PWD/../UGameEngine