]> Shamusworld >> Repos - architektonas/blob - architektonas.pro
In the middle of refactoring objects for loading/saving.
[architektonas] / architektonas.pro
1 #
2 # Architektonas Qt project file
3 #
4 # by James Hammons
5 # Copyright (C) 2011 Underground Software
6 #
7 # See the README and GPLv3 files for licensing and warranty information
8 #
9
10 CONFIG    += qt warn_on release debug
11 RESOURCES += res/architektonas.qrc
12 #LIBS      += -Ldxflib/lib -ldxf
13
14 # We stuff all the intermediate crap into obj/ so it won't confuse us mere mortals ;-)
15 OBJECTS_DIR = obj
16 MOC_DIR     = obj
17 RCC_DIR     = obj
18 UI_DIR      = obj
19
20 INCLUDEPATH += \
21         src
22 #       fparser \
23 #       dxflib/include \
24 #       src/mainapp \
25 #       src/actions \
26 #       src/base \
27 #       src/widgets \
28 #       src/forms
29
30 DEPENDPATH = \
31         src
32 #       fparser \
33 #       dxflib/include \
34 #       src/mainapp \
35 #       src/actions \
36 #       src/base \
37 #       src/widgets \
38 #       src/forms
39
40 #HEADERS = \
41 #       fparser/fparser.hh
42
43 HEADERS = \
44         src/about.h \
45         src/action.h \
46         src/applicationwindow.h \
47         src/arc.h \
48         src/circle.h \
49         src/container.h \
50         src/dimension.h \
51         src/drawingview.h \
52         src/drawcircleaction.h \
53         src/drawlineaction.h \
54         src/ellipse.h \
55         src/fileio.h \
56         src/generaltab.h \
57         src/line.h \
58         src/main.h \
59         src/mathconstants.h \
60         src/object.h \
61         src/painter.h \
62         src/settingsdialog.h \
63         src/vector.h
64
65 SOURCES = \
66         src/about.cpp \
67         src/action.cpp \
68         src/applicationwindow.cpp \
69         src/arc.cpp \
70         src/circle.cpp \
71         src/container.cpp \
72         src/dimension.cpp \
73         src/drawingview.cpp \
74         src/drawcircleaction.cpp \
75         src/drawlineaction.cpp \
76         src/ellipse.cpp \
77         src/fileio.cpp \
78         src/generaltab.cpp \
79         src/line.cpp \
80         src/main.cpp \
81         src/object.cpp \
82         src/painter.cpp \
83         src/settingsdialog.cpp \
84         src/vector.cpp
85