-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathteam-algorithms-oop.pro
More file actions
55 lines (43 loc) · 1.1 KB
/
team-algorithms-oop.pro
File metadata and controls
55 lines (43 loc) · 1.1 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
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++1z
LIBS += -lsqlite3
TARGET = team-algorithms-oop
TEMPLATE = app
DEFINES += QT_DEPRECATED_WARNINGS
INCLUDEPATH += include \
src \
src/SplayTree \
src/RedBlackTree \
deps \
deps/cereal/include
SOURCES += \
gui/main.cpp \
gui/MainWindow.cpp
HEADERS += \
gui/MainWindow.hpp \
src/AnyTree.tpp \
src/AnyTreeDetail.hpp \
src/BSTBase.hpp \
src/BSTBase.tpp \
src/BSTIterator.hpp \
src/BSTIterator.tpp \
src/NodeBase.hpp \
src/NodeUtilities.hpp \
src/TreeDB.tpp \
src/UndoableTree.tpp \
src/SplayTree/SplayTree.tpp \
src/SplayTree/Splayer.hpp \
src/RedBlackTree/DeletionFixRBTree.hpp \
src/RedBlackTree/InsertionFixRBTree.hpp \
src/RedBlackTree/RBNodeUtilities.hpp \
src/RedBlackTree/RedBlackTree.tpp \
include/AnyTree.hpp \
include/RedBlackTree.hpp \
include/SplayTree.hpp \
include/TreeDB.hpp \
include/UndoableTree.hpp
FORMS += \
gui/MainWindow.ui
RESOURCES += \
gui/resourses.qrc