blob: 7abfd5756353303eb1651167f158500aa954179f (
plain) (
blame)
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
|
QT += core gui
TARGET = Author
TEMPLATE = app
SOURCES += main.cpp\
DocumentBuffer.cpp \
DocumentItem.cpp \
TypeEditor.cpp \
NoteEditor.cpp \
StepRunner.cpp \
NotesItem.cpp \
Instructions.cpp \
Introduction.cpp \
CompositionButton.cpp
HEADERS += \
DocumentBuffer.h \
DocumentItem.h \
TypeEditor.h \
NoteEditor.h \
StepRunner.h \
NotesItem.h \
Instructions.h \
Introduction.h \
CompositionButton.h
RESOURCES += \
res/resources.rc
win32:RC_FILE = res/winresources.rc
macx:ICON = res/typewriter.icns
macx:QMAKE_INFO_PLIST = res/Info.plist
OTHER_FILES += \
macdeploy.sh \
syncbuildrun.sh
|