]> Shamusworld >> Repos - guemap/blob - guemap.pro
Add MRU file list, adjustments to room edge labels.
[guemap] / guemap.pro
1 # Use 'qmake -o Makefile guemap.pro'
2
3 #CONFIG     += qt warn_on release c++11
4 CONFIG     += qt warn_on debug c++11
5 RESOURCES  += res/guemap.qrc
6 #LIBS       += -Ldxflib/lib -ldxf
7 #LIBS       += -lao
8 #QMAKE_LIBS += -static
9 QT         += widgets
10
11 # We stuff all the intermediate crap into obj/ so it won't confuse us mere mortals ;-)
12 OBJECTS_DIR = obj
13 MOC_DIR     = obj
14 RCC_DIR     = obj
15 UI_DIR      = obj
16
17 #win32: RC_ICONS = res/woz-icon.ico
18
19 INCLUDEPATH += \
20         src
21
22 DEPENDPATH = \
23         src
24
25 HEADERS = \
26         src/about.h         \
27         src/array.h         \
28         src/file.h          \
29         src/globals.h       \
30         src/guemapapp.h     \
31         src/mainwin.h       \
32         src/mapdialog.h     \
33         src/mapdoc.h        \
34         src/mapview.h       \
35         src/mathconstants.h \
36         src/roomdialog.h    \
37         src/roomwidget.h    \
38         src/undo.h
39
40 SOURCES = \
41         src/about.cpp      \
42         src/file.cpp       \
43         src/globals.cpp    \
44         src/guemapapp.cpp  \
45         src/mainwin.cpp    \
46         src/mapdialog.cpp  \
47         src/mapdoc.cpp     \
48         src/mapview.cpp    \
49         src/roomdialog.cpp \
50         src/roomwidget.cpp \
51         src/undo.cpp
52
53 #HEADERS = \
54 #        src/array.h \
55 #       src/childfrm.h \
56 #       src/cjm_algorithm.h \
57 #       src/commentdlg.h \
58 #       src/file.h \
59 #       src/finddlg.h \
60 #       src/globals.h \
61 #       src/guemap.h \
62 #       src/mainfrm.h \
63 #       src/mapdoc.h \
64 #       src/mapprop.h \
65 #       src/mapview.h \
66 #       src/navopt.h \
67 #       src/properties.h \
68 #       src/resource.h \
69 #       src/scrollzoom.h \
70 #       src/stdafx.h \
71 #       src/undo.h
72
73 #SOURCES = \
74 #       src/childfrm.cpp \
75 #       src/commentdlg.cpp \
76 #       src/export.cpp \
77 #       src/file.cpp \
78 #       src/finddlg.cpp \
79 #       src/findpath.cpp \
80 #       src/globals.cpp \
81 #       src/guemap.cpp \
82 #       src/mainfrm.cpp \
83 #       src/mapdoc.cpp \
84 #       src/mapprop.cpp \
85 #       src/mapview.cpp \
86 #       src/navopt.cpp \
87 #       src/properties.cpp \
88 #       src/scrollzoom.cpp \
89 #       src/stdafx.cpp \
90 #       src/undo.cpp
91