Created
November 7, 2014 22:15
-
-
Save ialhashim/7993f81bb4775a574b8c to your computer and use it in GitHub Desktop.
2D Near Isometric Deformations - modern qmake pro file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 2D Near Isometric Deformations - | |
# code from : http://www.cs.technion.ac.il/~cggc/Upload/Projects/KVFDeformation/index.html | |
QT += core gui opengl | |
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets | |
TEMPLATE = app | |
TARGET = KVF_deform | |
INCLUDEPATH += . ./include | |
DEFINES += _USE_MATH_DEFINES | |
HEADERS += \ | |
deformationscene.h \ | |
logspiral.h \ | |
model2d.h \ | |
simplesparsematrix.h \ | |
solver.h \ | |
triangle.h \ | |
vector2d.h | |
SOURCES += \ | |
deformationscene.cpp \ | |
logspiral.cpp \ | |
main.cpp \ | |
moc_deformationscene.cpp \ | |
model2d.cpp \ | |
simplesparsematrix.cpp \ | |
vector2d.cpp \ | |
ldl.c | |
LIBS += $$PWD/lib/libiomp5mt.lib | |
LIBS += $$PWD/lib/mkl_core.lib | |
LIBS += $$PWD/lib/mkl_intel_lp64.lib | |
LIBS += $$PWD/lib/mkl_intel_thread.lib | |
LIBS += $$PWD/lib/suitesparse.lib |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment