blob: 97fab174c3b4bd830312bc1b4863c80aba536024 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
INCLUDEPATH += $$PWD/
include($$PWD/../3rdparty/zlib/zlib.pri)
HEADERS += \
$$PWD/hbtreeglobal.h \
$$PWD/orderedlist_p.h \
$$PWD/hbtree.h \
$$PWD/hbtreetransaction.h \
$$PWD/hbtreecursor.h \
$$PWD/hbtree_p.h \
$$PWD/hbtreeassert_p.h
SOURCES += \
$$PWD/orderedlist.cpp \
$$PWD/hbtree.cpp \
$$PWD/hbtreetransaction.cpp \
$$PWD/hbtreecursor.cpp \
$$PWD/hbtreeassert.cpp
|