-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathQtGraph.pro
More file actions
70 lines (52 loc) · 1.69 KB
/
QtGraph.pro
File metadata and controls
70 lines (52 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
######################################################################
# Automatically generated by qmake (3.0) Thu Jan 19 23:09:31 2017
######################################################################
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
greaterThan(QT_MAJOR_VERSION, 4): CONFIG += c++11
else: QMAKE_CXXFLAGS += -std=c++11
TEMPLATE = lib
CONFIG(debug, debug|release) {
TARGET = QtGraphd
}
CONFIG(release, debug|release) {
TARGET = QtGraph
}
# BUILD should be automatically set to x86 or x86_64 unless passed in by user.
isEmpty(BUILD) {
BUILD = $$QMAKE_HOST.arch
}
INSTALL_PATH = $$(INSTALL_PATH)
GRAPHVIZ_ROOT = $$(GRAPHVIZ_ROOT)
INCLUDEPATH += . private common
DEFINES += QGRAPHVIZ_LIBRARY
INCLUDEPATH += $$GRAPHVIZ_ROOT/include
LIBS += -L$$GRAPHVIZ_ROOT/lib -lcdt -lgvc -lcgraph
PUBLIC_HEADERS += \
common/argonavis-lib-config.h \
common/qtgraphlibrary.h \
QGraphCanvas.h \
QGraphEdge.h \
QGraphNode.h
PRIVATE_HEADERS += \
private/QGraphCanvasPrivate.h \
private/QGraphEdgePrivate.h \
private/QGraphNodePrivate.h
HEADERS += $$PUBLIC_HEADERS $$PRIVATE_HEADERS
SOURCES += QGraphCanvas.cpp \
QGraphEdge.cpp \
QGraphNode.cpp \
private/QGraphCanvasPrivate.cpp \
private/QGraphEdgePrivate.cpp \
private/QGraphNodePrivate.cpp
contains(BUILD, x86_64) {
target.path = $$INSTALL_PATH/lib64/$$QT_VERSION
}
else {
target.path = $$INSTALL_PATH/lib/$$QT_VERSION
}
target_header.path = $$INSTALL_PATH/include/QtGraph
target_header.files = $$PUBLIC_HEADERS
INSTALLS += target_header target
DISTFILES += \
README.md