-
Notifications
You must be signed in to change notification settings - Fork 0
/
Renamer.pro
53 lines (40 loc) · 1.15 KB
/
Renamer.pro
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
#-------------------------------------------------
#
# Project created by QtCreator 2016-04-04T15:30:02
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
TARGET = Renamer
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
filedata.cpp \
qcustomplot.cpp \
filenames.cpp \
fileparser.cpp \
grapher.cpp \
graph.cpp
HEADERS += mainwindow.h \
file.h \
filedata.h \
qcustomplot.h \
filenames.h \
axis.h \
fileparser.h \
grapher.h \
graph.h
FORMS += mainwindow.ui
win32:CONFIG(release, debug|release):
LIBS += -L$$PWD/../../../../../local/boost_1_59_0/stage/lib/
-lboost_filesystem-vc140-mt-gd-1_59
-lboost_system-vc140-mt-gd-1_59
else:win32:CONFIG(debug, debug|release):
LIBS += -L$$PWD/../../../../../local/boost_1_59_0/stage/lib/
-lboost_filesystem-vc140-mt-gd-1_59d
-lboost_system-vc140-mt-gd-1_59
else:unix:
LIBS += -L$$PWD/../../../../../local/boost_1_59_0/stage/lib/
-lboost_filesystem-vc140-mt-gd-1_59
INCLUDEPATH += $$PWD/../../../../../local/boost_1_59_0/
DEPENDPATH += $$PWD/../../../../../local/boost_1_59_0/