-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgantt_chart.pro
More file actions
29 lines (20 loc) · 759 Bytes
/
gantt_chart.pro
File metadata and controls
29 lines (20 loc) · 759 Bytes
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
#-------------------------------------------------
#
# Project created by QtCreator 2015-06-13T12:51:44
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = gantt_chart
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
activity.cpp
HEADERS += mainwindow.h \
activity.h
FORMS += mainwindow.ui
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../ChartDirector/lib/release/ -lchartdir
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../ChartDirector/lib/debug/ -lchartdir
else:unix: LIBS += -L$$PWD/../../ChartDirector/lib/ -lchartdir
INCLUDEPATH += $$PWD/../../ChartDirector/include
DEPENDPATH += $$PWD/../../ChartDirector/include