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

1234567891011121314151617181920212223242526272829303132
  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. CONFIG += c++11
  11. SOURCES += \
  12. testvector3d.cpp \
  13. testmatrix3x3.cpp \
  14. main.cpp
  15. HEADERS += \
  16. testvector3d.h \
  17. testmatrix3x3.h
  18. FORMS +=
  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