加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Display3DModel.pro 967 Bytes
一键复制 编辑 原始数据 按行查看 历史
pengrui_2009 提交于 2021-03-08 21:57 . Feature:
#-------------------------------------------------
#
# Project created by QtCreator 2013-08-29T00:18:56
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
lessThan(QT_MAJOR_VERSION, 5): error(This project requires Qt 5 or later)
TARGET = Display3DModel
TEMPLATE = app
SOURCES += main.cpp\
window.cpp \
scene.cpp \
modelloader.cpp \
scene_gles.cpp
HEADERS += window.h \
scene.h \
modelloader.h \
scene_gles.h \
scenebase.h
unix: !macx {
INCLUDEPATH += third-party/include
LIBS += -lassimp -Lthird-party/library
}
macx {
INCLUDEPATH += /usr/local/include
LIBS += /usr/local/lib/libassimp.dylib
}
win32 {
INCLUDEPATH += "C:/Assimp3/include"
LIBS += -L"C:/Assimp3/lib/Release" -lassimp
}
OTHER_FILES += ads_fragment.vert ads_fragment.frag \
es_ads_fragment.frag \
es_ads_fragment.vert
RESOURCES += \
resources.qrc
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化