-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTriangleComponent.pro
More file actions
76 lines (58 loc) · 1.65 KB
/
TriangleComponent.pro
File metadata and controls
76 lines (58 loc) · 1.65 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
#Author Caleb Amoa Buahin
#Email caleb.buahin@gmail.com
#Date 2016
#License Same as Shewchucks'.
#Triangulation Component
DEFINES += TRIANGLECOMPONENT_LIBRARY
contains(DEFINES,TRIANGLECOMPONENT_LIBRARY){
TEMPLATE = lib
message("Compiling as library")
} else {
TEMPLATE = app
CONFIG-=app_bundle
message("Compiling as application")
}
VERSION = 1.0.0.0
TARGET = TriangleComponent
QT += core concurrent
INCLUDEPATH += .\
./include \
./../HydroCouple/include \
./../HydroCoupleSDK/include
PRECOMPILED_HEADER = ./include/stdafx.h
HEADERS += ./include/stdafx.h\
./include/trianglecomponent_global.h \
./include/core/triangle.h \
./include/component/trianglecomponent.h \
./include/component/trianglecomponentinfo.h
SOURCES += ./src/stdafx.cpp \
./src/core/triangle.c \
./src/core/tricall.c \
./src/component/trianglecomponent.cpp \
./src/component/trianglecomponentinfo.cpp \
./src/main.cpp
macx{
INCLUDEPATH += /usr/local \
/usr/local/include
}
CONFIG(debug, debug|release) {
DESTDIR = ./build/debug
OBJECTS_DIR = $$DESTDIR/.obj
MOC_DIR = $$DESTDIR/.moc
RCC_DIR = $$DESTDIR/.qrc
UI_DIR = $$DESTDIR/.ui
macx{
LIBS += -L./../HydroCoupleSDK/build/debug -lHydroCoupleSDK
}
}
CONFIG(release, debug|release) {
DESTDIR = lib
RELEASE_EXTRAS = ./build/release
OBJECTS_DIR = $$RELEASE_EXTRAS/.obj
MOC_DIR = $$RELEASE_EXTRAS/.moc
RCC_DIR = $$RELEASE_EXTRAS/.qrc
UI_DIR = $$RELEASE_EXTRAS/.ui
macx{
LIBS += -L./../HydroCoupleSDK/lib -lHydroCoupleSDK
}
}