-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcutecw.pro
135 lines (120 loc) · 3.21 KB
/
cutecw.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#-------------------------------------------------
#
# Project created by QtCreator 2010-07-01T21:21:28
#
#-------------------------------------------------
QT += core gui network xml widgets multimedia
TARGET = cutecw
TEMPLATE = app
RESOURCES = cutecw.qrc
SOURCES += main.cpp\
MainWindow.cpp \
Morse.cpp \
Generator.cpp \
MorseStat.cpp \
Prefs.cpp \
modes/SpeedTrainingMode.cpp \
modes/TrainingMode.cpp \
modes/MorseMode.cpp \
modes/PlayMode.cpp \
modes/LetterTrainingMode.cpp \
modes/WordTrainingMode.cpp \
modes/ReadMode.cpp \
modes/ChooseSequenceDialog.cpp \
modes/GroupingMode.cpp \
modes/KeyTraining.cpp \
modes/games/MGameMode.cpp \
modes/games/MCountGameMode.cpp \
modes/games/MTimeGameMode.cpp \
modes/games/GroupGame.cpp \
modes/games/WordGame.cpp \
modes/games/HighScoresDialog.cpp \
modes/games/HighScores.cpp \
modes/QModeStart.cpp \
AboutDialog.cpp \
modes/FrontPage.cpp \
GoalBar.cpp \
widgets/KeyTimingDisplay.cpp \
KeyingReader.cpp \
modes/games/KeyInvaders.cpp \
modes/games/Invader.cpp \
modes/MSequences.cpp
HEADERS += MainWindow.h \
Morse.h \
morse_code.h \
Generator.h \
MorseStat.h \
Prefs.h \
words/100words.h \
words/500words.h \
words/400words.h \
words/300words.h \
words/200words.h \
modes/SpeedTrainingMode.h \
modes/TrainingMode.h \
modes/MorseMode.h \
modes/PlayMode.h \
modes/LetterTrainingMode.h \
modes/WordTrainingMode.h \
modes/ReadMode.h \
modes/ChooseSequenceDialog.h \
modes/GroupingMode.h \
modes/KeyTraining.h \
modes/games/MGameMode.h \
modes/games/MCountGameMode.h \
modes/games/MTimeGameMode.h \
modes/games/GroupGame.h \
modes/games/WordGame.h \
modes/games/HighScoresDialog.h \
modes/games/HighScores.h \
modes/QModeStart.h \
AboutDialog.h \
modes/FrontPage.h \
GoalBar.h \
widgets/KeyTimingDisplay.h \
KeyingReader.h \
modes/games/KeyInvaders.h \
modes/games/Invader.h \
modes/MSequences.h
FORMS += AboutDialog.ui
# CONFIG += mobility
# MOBILITY =
#symbian {
# TARGET.UID3 = 0xe0df144b
# TARGET.CAPABILITY +=
# TARGET.EPOCSTACKSIZE = 0x14000
# TARGET.EPOCHEAPSIZE = 0x020000 0x800000
#}
OTHER_FILES += \
debian/changelog \
debian/compat \
debian/control \
debian/copyright \
debian/README \
debian/rules \
dist/cutecw.desktop
BINDIR = $$PREFIX/bin
DATADIR =$$PREFIX/share
macx {
CONFIG += x86 x86_64
# CONFIG += x86 ppc x86_64 ppc64
}
unix:!symbian {
icon26.files = icons/26x26/cutecw.png
icon48.files = icons/48x48/cutecw.png
icon64.files = icons/64x64/cutecw.png
icon26.path = $$DATADIR/icons/hicolor/26x26/apps
icon48.path = $$DATADIR/icons/hicolor/48x48/apps
icon64.path = $$DATADIR/icons/hicolor/64x64/apps
desktopfile.files = dist/$${TARGET}.desktop
maemo5 {
target.path = /opt/usr/bin
desktopfile.path = /usr/share/applications/hildon
} else {
target.path = /usr/local/bin
desktopfile.path = /usr/share/applications
}
INSTALLS += desktopfile
INSTALLS += target
INSTALLS += icon26 icon48 icon64
}