Mercurial > hg > octave-max
annotate gui/octave-gui.pro @ 13561:dd029759f57e
Corrected language files.
author | Jacob Dawid <jacob.dawid@googlemail.com> |
---|---|
date | Sun, 31 Jul 2011 20:43:57 +0200 |
parents | 248b897d9f36 |
children | 93dc3b05a30c |
rev | line source |
---|---|
13504
13e3d60aff2d
Replaced Quint with OctaveGUI.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13502
diff
changeset
|
1 # OctaveGUI - A graphical user interface for Octave |
13501 | 2 # Copyright (C) 2011 Jacob Dawid |
3 # jacob.dawid@googlemail.com | |
4 # | |
5 # This program is free software: you can redistribute it and/or modify | |
6 # it under the terms of the GNU General Public License as published by | |
7 # the Free Software Foundation, either version 3 of the License, or | |
8 # (at your option) any later version. | |
9 # | |
10 # This program is distributed in the hope that it will be useful, | |
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 # GNU General Public License for more details. | |
14 # | |
15 # You should have received a copy of the GNU General Public License | |
16 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 | |
18 | |
19 # Basic settings: | |
13554
df092b9e95ed
Removed unnecessary libs.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13552
diff
changeset
|
20 QT += core gui webkit # Qt modules |
13501 | 21 TEMPLATE = app # Build as application |
13502
751bbbcfd6e3
Renamed project files and target binary to octave-gui.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13501
diff
changeset
|
22 TARGET = octave-gui # Name of the target binary |
13501 | 23 |
24 DESTDIR = bin # Destination of the output | |
25 UI_DIR = ui-files # Folder for ui files | |
26 MOC_DIR = moc-files # Folder for moc files | |
27 OBJECTS_DIR = object-files # Folder for object files | |
28 | |
13561
dd029759f57e
Corrected language files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13558
diff
changeset
|
29 TRANSLATIONS += languages/generic.ts \ |
dd029759f57e
Corrected language files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13558
diff
changeset
|
30 languages/german.ts # Available translations |
13501 | 31 LIBS += -lqscintilla2 |
32 | |
33 mac { | |
34 CONFIG -= app_bundle | |
35 } | |
36 | |
37 # Includepaths and libraries to link against: | |
13543
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
38 INCLUDEPATH += src src/terminal src/qirc src/backend |
13501 | 39 INCFLAGS += $$system(mkoctfile -p INCFLAGS) |
40 mac { | |
41 INCFLAGS += -I/opt/local-native/include | |
42 } | |
43 | |
44 LFLAGS += $$system(mkoctfile -p LFLAGS) \ | |
45 $$system(mkoctfile -p OCTAVE_LIBS) \ | |
46 $$system(mkoctfile -p LIBS) | |
47 mac { | |
48 LFLAGS += -L/opt/local-native/lib | |
49 } | |
50 | |
51 QMAKE_LFLAGS += $$LFLAGS -lutil $$system(mkoctfile -p RLD_FLAG) | |
52 QMAKE_CXXFLAGS += $$INCFLAGS | |
53 | |
54 # Files associated with the project: | |
55 SOURCES +=\ | |
13558
248b897d9f36
editor: custom lexer, syntax highlighting, auto completion
ttl <ttl@justmail.de>
parents:
13554
diff
changeset
|
56 src/lexer/lexeroctavegui.cpp \ |
13501 | 57 src/terminal/TerminalCharacterDecoder.cpp \ |
58 src/terminal/KeyboardTranslator.cpp \ | |
59 src/terminal/Screen.cpp \ | |
60 src/terminal/History.cpp \ | |
61 src/terminal/konsole_wcwidth.cpp \ | |
62 src/terminal/ScreenWindow.cpp \ | |
63 src/terminal/Emulation.cpp \ | |
64 src/terminal/Vt102Emulation.cpp \ | |
65 src/terminal/TerminalDisplay.cpp \ | |
66 src/terminal/Filter.cpp \ | |
67 src/terminal/Pty.cpp \ | |
68 src/terminal/kpty.cpp \ | |
69 src/terminal/kptyprocess.cpp \ | |
70 src/terminal/kprocess.cpp \ | |
71 src/terminal/kptydevice.cpp \ | |
72 src/terminal/Session.cpp \ | |
73 src/terminal/ShellCommand.cpp \ | |
74 src/terminal/QTerminalWidget.cpp \ | |
75 src/MainWindow.cpp \ | |
76 src/OctaveTerminal.cpp \ | |
77 src/VariablesDockWidget.cpp \ | |
78 src/HistoryDockWidget.cpp \ | |
79 src/FilesDockWidget.cpp \ | |
80 src/FileEditorMdiSubWindow.cpp \ | |
81 src/BrowserWidget.cpp \ | |
82 src/ImageViewerMdiSubWindow.cpp \ | |
83 src/IRCWidget.cpp \ | |
84 src/qirc/IRCClient.cpp \ | |
85 src/qirc/IClientSocket.cpp \ | |
13504
13e3d60aff2d
Replaced Quint with OctaveGUI.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13502
diff
changeset
|
86 src/SettingsDialog.cpp \ |
13537
a43ecce77eec
Introduced a central ResourceManager class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13516
diff
changeset
|
87 src/OctaveGUI.cpp \ |
13539
a4b5cad8f7c6
Added command line parser class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13537
diff
changeset
|
88 src/ResourceManager.cpp \ |
13540
0dbf8681cd08
Seperated classes into own files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13539
diff
changeset
|
89 src/CommandLineParser.cpp \ |
13543
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
90 src/backend/OctaveCallbackThread.cpp \ |
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
91 src/backend/OctaveLink.cpp \ |
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
92 src/backend/OctaveMainThread.cpp |
13501 | 93 |
94 HEADERS += \ | |
13558
248b897d9f36
editor: custom lexer, syntax highlighting, auto completion
ttl <ttl@justmail.de>
parents:
13554
diff
changeset
|
95 src/lexer/lexeroctavegui.h \ |
13501 | 96 src/terminal/TerminalCharacterDecoder.h \ |
97 src/terminal/Character.h \ | |
98 src/terminal/CharacterColor.h \ | |
99 src/terminal/ColorTables.h \ | |
100 src/terminal/KeyboardTranslator.h \ | |
101 src/terminal/Screen.h \ | |
102 src/terminal/History.h \ | |
103 src/terminal/konsole_wcwidth.h \ | |
104 src/terminal/konsole_export.h \ | |
105 src/terminal/ScreenWindow.h \ | |
106 src/terminal/Emulation.h \ | |
107 src/terminal/Vt102Emulation.h \ | |
108 src/terminal/TerminalDisplay.h \ | |
109 src/terminal/Filter.h \ | |
110 src/terminal/Pty.h \ | |
111 src/terminal/kpty.h \ | |
112 src/terminal/kpty_p.h \ | |
113 src/terminal/kpty_export.h \ | |
114 src/terminal/kptyprocess.h \ | |
115 src/terminal/kprocess.h \ | |
116 src/terminal/kprocess_p.h \ | |
117 src/terminal/kptydevice.h \ | |
118 src/terminal/Session.h \ | |
119 src/terminal/ShellCommand.h \ | |
120 src/terminal/QTerminalWidget.h \ | |
121 src/MainWindow.h \ | |
122 src/OctaveTerminal.h \ | |
123 src/VariablesDockWidget.h \ | |
124 src/HistoryDockWidget.h \ | |
125 src/FilesDockWidget.h \ | |
126 src/FileEditorMdiSubWindow.h \ | |
127 src/BrowserWidget.h \ | |
128 src/ImageViewerMdiSubWindow.h \ | |
129 src/IRCWidget.h \ | |
130 src/qirc/IRCCodes.h \ | |
131 src/qirc/IRCClient.h \ | |
132 src/qirc/IClientSocket.h \ | |
13537
a43ecce77eec
Introduced a central ResourceManager class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13516
diff
changeset
|
133 src/SettingsDialog.h \ |
13539
a4b5cad8f7c6
Added command line parser class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13537
diff
changeset
|
134 src/ResourceManager.h \ |
13540
0dbf8681cd08
Seperated classes into own files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13539
diff
changeset
|
135 src/CommandLineParser.h \ |
13543
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
136 src/backend/OctaveCallbackThread.h \ |
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
137 src/backend/OctaveLink.h \ |
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
138 src/backend/OctaveMainThread.h |
13501 | 139 |
140 FORMS += \ | |
141 src/SettingsDialog.ui |