summaryrefslogtreecommitdiffstats
path: root/src/domain/domain.pri
blob: ab4fcfce41a12b4da16a8b5825b37cff3de926cd (plain)
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
#Subdirectiores are defined here, because qt creator doesn't handle nested include(foo.pri) chains very well.

INCLUDEPATH += $$PWD
DEPENDPATH += $$PWD

SOURCES += \
    $$PWD/abstractdomain.cpp \
    $$PWD/polardomain.cpp \
    $$PWD/xydomain.cpp \
    $$PWD/xypolardomain.cpp \
    $$PWD/xlogydomain.cpp \
    $$PWD/xlogypolardomain.cpp \
    $$PWD/logxydomain.cpp \
    $$PWD/logxypolardomain.cpp \
    $$PWD/logxlogydomain.cpp \
    $$PWD/logxlogypolardomain.cpp

PRIVATE_HEADERS += \
    $$PWD/abstractdomain_p.h \
    $$PWD/polardomain_p.h \
    $$PWD/xydomain_p.h \
    $$PWD/xypolardomain_p.h \
    $$PWD/xlogydomain_p.h \
    $$PWD/xlogypolardomain_p.h \
    $$PWD/logxydomain_p.h \
    $$PWD/logxypolardomain_p.h \
    $$PWD/logxlogydomain_p.h \
    $$PWD/logxlogypolardomain_p.h