-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSWP2.pro
37 lines (29 loc) · 798 Bytes
/
SWP2.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
#-------------------------------------------------
#
# Project created by QtCreator 2014-04-09T14:21:25
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = SWP2
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
qgraphicsitemprototype.cpp \
qgraphicsitemfactory.cpp \
qgraphicsitemcomposite.cpp \
graphicsscene.cpp \
buttonwidgetmediator.cpp \
commands.cpp \
qgraphicspinprototype.cpp
HEADERS += mainwindow.h \
qgraphicsitemprototype.h \
qgraphicsitemfactory.h \
qgraphicsitemcomposite.h \
qexception.h \
graphicsscene.h \
buttonwidgetmediator.h \
commands.h \
qgraphicspinprototype.h
FORMS += mainwindow.ui
QMAKE_CXXFLAGS += -std=c++11