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

123456789101112131415161718192021222324252627282930313233343536373839
  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. unix:!macx {
  20. LIBS += -lGLU
  21. }
  22. macx:{
  23. LIBS += -framework OpenGL
  24. }
  25. win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../UGameEngine/release/ -lUGameEngine
  26. else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../UGameEngine/debug/ -lUGameEngine
  27. else:unix: LIBS += -L$$OUT_PWD/../UGameEngine/ -lUGameEngine
  28. INCLUDEPATH += $$PWD/../UGameEngine
  29. DEPENDPATH += $$PWD/../UGameEngine