This repository has been archived on 2020-09-22. You can view files and clone it, but cannot push or open issues or pull requests.
fractionnement/fractionnement.pro

31 lines
577 B
Prolog

QT += core gui opengl
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = fractionnement
TEMPLATE = app
DEFINES += QT_DEPRECATED_WARNINGS
CONFIG += debug
unix:!macx {
LIBS += -L $$_PRO_FILE_PWD_/libs/OpenMesh/liblinux/
}
macx {
LIBS += -L $$_PRO_FILE_PWD_/libs/OpenMesh/libosx/
}
LIBS += -lglut -lGLU -lOpenMeshCore -lm
INCLUDEPATH += libs/OpenMesh/inc/ src/
SOURCES += \
src/main.cpp \
src/mainwindow.cpp \
src/meshviewerwidget.cpp \
src/mymesh.cpp
HEADERS += \
src/mainwindow.h \
src/meshviewerwidget.h \
src/mymesh.h
FORMS += \
ui/mainwindow.ui