1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| TEMPLATE = app
CONFIG += console
TARGET = qt_ogre
DEPENDPATH += .
INCLUDEPATH += . C:\OgreSDK_vc9_v1-8-0\\include
INCLUDEPATH += "C:\OgreSDK_vc9_v1-8-0\\include\\OGRE"
INCLUDEPATH += C:\OgreSDK_vc9_v1-8-0\\boost
win32 {
LIBS += -LC:\OgreSDK_vc9_v1-8-0\\lib\\release
LIBS += -LC:\OgreSDK_vc9_v1-8-0\\lib\\debug
LIBS += -LC:\OgreSDK_vc9_v1-8-0/boost/lib
}
CONFIG(debug, debug|release) {
LIBS += -LC:\OgreSDK_vc9_v1-8-0\\bin\\debug
LIBS += -lOgreMain
}
CONFIG(release, debug|release) {
LIBS += -LC:\OgreSDK_vc9_v1-8-0\\bin\\release
LIBS += -lOgreMain
}
SOURCES += \
main.cpp \
ogrewidget.cpp
FORMS += .
HEADERS += \
ogrewidget.h |
Partager