-
Notifications
You must be signed in to change notification settings - Fork 1
/
SORM.pri
41 lines (38 loc) · 1.28 KB
/
SORM.pri
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
SORM_EXCEPTIONS:{
DEFINES += SORM_ENABLE_EXCEPTIONS=1
}else{
DEFINES += SORM_ENABLE_EXCEPTIONS=0
}
INCLUDEPATH += $$PWD/src
SOURCES += \
$$PWD/src/builder.cpp \
$$PWD/src/model.cpp \
$$PWD/src/collection.cpp \
$$PWD/src/db.cpp \
$$PWD/src/databaseerrorexception.cpp \
$$PWD/src/modelbuilder.cpp \
$$PWD/src/relations/hasmanyrelation.cpp \
$$PWD/src/relations/relation.cpp \
$$PWD/src/relations/relationlist.cpp \
$$PWD/src/relations/relationresult.cpp \
$$PWD/src/relations/hasonerelation.cpp \
$$PWD/src/relations/belongstorelation.cpp \
$$PWD/src/relations/belongstomanyrelation.cpp \
$$PWD/src/primarykey.cpp
HEADERS += \
$$PWD/src/builder.h \
$$PWD/src/model.h \
$$PWD/src/collection.h \
$$PWD/src/db.h \
$$PWD/src/eloquentmodel.h \
$$PWD/src/relations/relation.h \
$$PWD/src/relations/eloquentrelation.h \
$$PWD/src/databaseerrorexception.h \
$$PWD/src/modelbuilder.h \
$$PWD/src/relations/hasmanyrelation.h \
$$PWD/src/relations/relationlist.h \
$$PWD/src/relations/relationresult.h \
$$PWD/src/relations/hasonerelation.h \
$$PWD/src/relations/belongstorelation.h \
$$PWD/src/relations/belongstomanyrelation.h \
$$PWD/src/primarykey.h