forked from chili-epfl/Carpenter-App-RoofDesigner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcarpenter.pro
More file actions
78 lines (62 loc) · 1.69 KB
/
carpenter.pro
File metadata and controls
78 lines (62 loc) · 1.69 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
TEMPLATE = app
QT += qml quick multimedia 3dcore 3drenderer 3dinput 3dquick
CONFIG += c++11
SOURCES += main.cpp \
sketch_converter.cpp \
sketchmesh.cpp \
sketchpoint.cpp \
sketchline.cpp \
sketchconstraintssolver.cpp \
constrainedpoint.cpp \
constrainedline.cpp \
sketchjoint.cpp \
solve.cpp \
derivatives.cpp \
sketchlolexporter.cpp \
parameter.cpp \
displaykeyboard.cpp
HEADERS += sketch_converter.h \
sketchmesh.h \
sketchpoint.h \
sketchline.h \
sketchconstraintssolver.h \
constrainedpoint.h \
constrainedline.h \
sketchjoint.h \
solve.h \
sketchlolexporter.h \
parameter.h \
displaykeyboard.h
RESOURCES += qml.qrc \
3d.qrc
# enable debug
DEFINES += CARPENTER_DEBUG
# enable using SketchPoint as joint component
#DEFINES += CARPENTER_USE_SKETCHPOINT
# enable using SketchJoint as joint component
DEFINES += CARPENTER_USE_SKETCHJOINT
macx {
INCLUDEPATH += /usr/local/include/
LIBS += /usr/local/lib/libassimp.dylib
}
linux {
INCLUDEPATH += /usr/local/include/
LIBS += -L/usr/local/lib
LIBS += -lassimp
}
win32 {
# build or download binaries from : https://bruceoutdoors.wordpress.com/2014/08/22/building-assimp-3-with-mingw-4-8/
INCLUDEPATH += C:\Assimp3-1-1_MinGW4-8-1_Win32\include
LIBS += -LC:\Assimp3-1-1_MinGW4-8-1_Win32\ -lassimp
}
android {
}
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Default rules for deployment.
include(deployment.pri)
DISTFILES += \
qmldir
#QMAKE_CC=/usr/local/Cellar/gcc/5.2.0/bin/g++-5
#QMAKE_CXX=/usr/local/Cellar/gcc/5.2.0/bin/g++-5
#QMAKE_LINK=/usr/local/Cellar/gcc/5.2.0/bin/g++-5