-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfloorplan.pro
61 lines (46 loc) · 1.28 KB
/
floorplan.pro
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
QT += svg xml
CONFIG += help
# binary
TARGET = Planta
INCLUDEPATH = include
LIB = lib
# destination of the binary
#DESTDIR = bin
DESTDIR = .
BUILD = build
SRC = src
RES = resources
UI = ui
# add .ui -> .h file to include path
UI_DIR = $$INCLUDEPATH
# moc_
MOC_DIR = $$BUILD
# .o
OBJECTS_DIR = $$BUILD
# from resources -> cpp
RCC_DIR = $$BUILD
INTERFACES = $$UI/floorplan2.ui
HEADERS = $$INCLUDEPATH/svglistwidget.h \
$$INCLUDEPATH/assistant.h \
$$INCLUDEPATH/dragwidgetgrid.h \
$$INCLUDEPATH/pages.h \
$$INCLUDEPATH/configdialog.h \
$$INCLUDEPATH/memoriadescritiva.h \
$$INCLUDEPATH/scenepixmapitem.h \
$$INCLUDEPATH/mainwindow.h
RESOURCES = $$RES/floorplan.qrc
SOURCES = $$SRC/svglistwidget.cpp \
$$SRC/dragwidgetgrid.cpp \
$$SRC/assistant.cpp \
$$SRC/pages.cpp \
$$SRC/scenepixmapitem.cpp \
$$SRC/configdialog.cpp \
$$SRC/memoriadescritiva.cpp \
$$SRC/mainwindow.cpp \
$$SRC/main.cpp
# install
target.path = $$DESTDIR
sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro images
INSTALLS += target
QMAKE_CLEAN += src/*~
QMAKE_CLEAN += include/*~