1234567891011121314151617181920212223242526272829303132 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2016-08-31T17:54:11
- #
- #-------------------------------------------------
-
- QT += core gui testlib
-
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
-
- TARGET = tests
- TEMPLATE = app
-
- CONFIG += c++11
-
- SOURCES += \
- testvector3d.cpp \
- testmatrix3x3.cpp \
- main.cpp
-
- HEADERS += \
- testvector3d.h \
- testmatrix3x3.h
-
- FORMS +=
-
- win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../UGameEngine/release/ -lUGameEngine
- else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../UGameEngine/debug/ -lUGameEngine
- else:unix: LIBS += -L$$OUT_PWD/../UGameEngine/ -lUGameEngine
-
- INCLUDEPATH += $$PWD/../UGameEngine
- DEPENDPATH += $$PWD/../UGameEngine
|