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.

tests.pro 738B

12345678910111213141516171819202122232425262728293031
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2016-08-31T17:54:11
  4. #
  5. #-------------------------------------------------
  6. QT += core gui testlib
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = tests
  9. TEMPLATE = app
  10. SOURCES += \
  11. testvector3d.cpp \
  12. testmatrix3x3.cpp \
  13. main.cpp
  14. HEADERS += \
  15. testvector3d.h \
  16. testmatrix3x3.h
  17. FORMS +=
  18. win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../UGameEngine/release/ -lUGameEngine
  19. else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../UGameEngine/debug/ -lUGameEngine
  20. else:unix: LIBS += -L$$OUT_PWD/../UGameEngine/ -lUGameEngine
  21. INCLUDEPATH += $$PWD/../UGameEngine
  22. DEPENDPATH += $$PWD/../UGameEngine