-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQt-Drawing.pro
46 lines (33 loc) · 861 Bytes
/
Qt-Drawing.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
QT += core gui widgets xml printsupport
TARGET = Qt-Drawing
TEMPLATE = app
DESTDIR = $$PWD/bin
DEFINES += QT_DEPRECATED_WARNINGS
CONFIG += c++11
SOURCES += \
items/mellipseobject.cpp \
items/mlineobject.cpp \
items/mrectobject.cpp \
items/mtextobject.cpp \
items/mbaseobject.cpp \
scenes/mbasescene.cpp \
views/mbaseview.cpp \
main.cpp \
mainwindow.cpp
HEADERS += \
items/mellipseobject.h \
items/mlineobject.h \
items/mrectobject.h \
items/mtextobject.h \
items/mbaseobject.h \
scenes/mbasescene.h \
views/mbaseview.h \
mainwindow.h
FORMS += \
mainwindow.ui
INCLUDEPATH += $$PWD/views \
$$PWD/items \
$$PWD/scenes
RESOURCES += \
resources.qrc
RC_ICONS = logo.ico