-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlgorithms.pro
More file actions
72 lines (63 loc) · 1.57 KB
/
Algorithms.pro
File metadata and controls
72 lines (63 loc) · 1.57 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
#-------------------------------------------------
#
# Project created by QtCreator 2017-08-23T22:41:09
#
#-------------------------------------------------
#Every time that i update XCode, the next path change:
#/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
#so, this will provoke link compilation and link problems.
#
#For this reason i stablished the ID of SDK that is used at the moment, using the macro QMAKE_MAC_SDK:
QMAKE_MAC_SDK = macosx10.14
QT += core gui
QT += webenginewidgets
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Algorithms
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
frmabout.cpp \
frmstablematching.cpp \
frmpriorityqueue.cpp \
binarytreebalanced.cpp \
help.cpp \
graphwidget.cpp \
frmgraphs.cpp \
gnode.cpp \
gedge.cpp \
frmgraphpath.cpp \
measuretool.cpp \
frmsort.cpp \
graphalgorithms.cpp \
frmcompress.cpp \
huffman.cpp
HEADERS += mainwindow.h \
frmabout.h \
frmstablematching.h \
frmpriorityqueue.h \
heap.h \
binarytreebalanced.h \
help.h \
graphwidget.h \
frmgraphs.h \
gnode.h \
gedge.h \
frmgraphpath.h \
measuretool.h \
graphs.h \
frmsort.h \
sortalgorithms.h \
graphsalgorithms.h \
disjoint.h \
frmcompress.h \
huffman.h
FORMS += mainwindow.ui \
frmabout.ui \
frmpriorityqueue.ui \
frmgraphs.ui \
frmstablematching.ui \
frmgraphpath.ui \
frmsorts.ui \
frmcompress.ui
DISTFILES += \
Readme.md