blob: a10f8b5801863c70ef8e69ee91e3b9a66f4ff3fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
INCLUDEPATH += $$PWD
HEADERS += \
$$PWD/uiundostack.h \
$$PWD/uiundogroup.h \
$$PWD/uiundostack_p.h \
$$PWD/uiaction.h \
$$PWD/uiactiongroup.h \
$$PWD/uiaction_p.h
SOURCES += \
$$PWD/uiundogroup.cpp \
$$PWD/uiundostack.cpp \
$$PWD/uiaction.cpp \
$$PWD/uiactiongroup.cpp
DEFINES += QT_NO_SHORTCUT
INCLUDEPATH += $$PWD
|