Mercurial > hg > octave-max
annotate gui/octave-gui.pro @ 13645:484a487f3999
Removed KProcess.
author | Jacob Dawid <jacob.dawid@googlemail.com> |
---|---|
date | Tue, 23 Aug 2011 16:32:23 +0200 |
parents | 0281f7082e4f |
children | ac3d9480292d |
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: | |
13579
6568fccb8940
Updated russian and ukrainian translation files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13574
diff
changeset
|
20 QT += core gui webkit network # 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 \ |
13566
d22b9973120f
Renamed language files to match convention.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13563
diff
changeset
|
30 languages/de-de.ts \ |
13572
7fff75c62f30
Added spanish translation.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13566
diff
changeset
|
31 languages/pt-br.ts \ |
13573
908c86cfe656
Added russian and ukrainian translation.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13572
diff
changeset
|
32 languages/es-es.ts \ |
908c86cfe656
Added russian and ukrainian translation.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13572
diff
changeset
|
33 languages/ru-ru.ts \ |
13574
4f44084ce322
Corrected language files for russian and ukrainian.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13573
diff
changeset
|
34 languages/uk-ua.ts # Available translations |
13501 | 35 LIBS += -lqscintilla2 |
36 | |
37 mac { | |
38 CONFIG -= app_bundle | |
39 } | |
40 | |
41 # Includepaths and libraries to link against: | |
13543
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
42 INCLUDEPATH += src src/terminal src/qirc src/backend |
13596
f6bb48258200
Corrected mistake.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13595
diff
changeset
|
43 INCFLAGS += $$system(mkoctfile -p INCFLAGS) |
13501 | 44 mac { |
45 INCFLAGS += -I/opt/local-native/include | |
46 } | |
47 | |
48 LFLAGS += $$system(mkoctfile -p LFLAGS) \ | |
49 $$system(mkoctfile -p OCTAVE_LIBS) \ | |
50 $$system(mkoctfile -p LIBS) | |
51 mac { | |
52 LFLAGS += -L/opt/local-native/lib | |
53 } | |
54 | |
55 QMAKE_LFLAGS += $$LFLAGS -lutil $$system(mkoctfile -p RLD_FLAG) | |
56 QMAKE_CXXFLAGS += $$INCFLAGS | |
57 | |
58 # Files associated with the project: | |
59 SOURCES +=\ | |
13558
248b897d9f36
editor: custom lexer, syntax highlighting, auto completion
ttl <ttl@justmail.de>
parents:
13554
diff
changeset
|
60 src/lexer/lexeroctavegui.cpp \ |
13501 | 61 src/terminal/kpty.cpp \ |
62 src/terminal/kptydevice.cpp \ | |
63 src/MainWindow.cpp \ | |
64 src/OctaveTerminal.cpp \ | |
65 src/VariablesDockWidget.cpp \ | |
66 src/HistoryDockWidget.cpp \ | |
67 src/FilesDockWidget.cpp \ | |
68 src/FileEditorMdiSubWindow.cpp \ | |
69 src/BrowserWidget.cpp \ | |
70 src/ImageViewerMdiSubWindow.cpp \ | |
71 src/IRCWidget.cpp \ | |
13504
13e3d60aff2d
Replaced Quint with OctaveGUI.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13502
diff
changeset
|
72 src/SettingsDialog.cpp \ |
13537
a43ecce77eec
Introduced a central ResourceManager class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13516
diff
changeset
|
73 src/OctaveGUI.cpp \ |
13539
a4b5cad8f7c6
Added command line parser class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13537
diff
changeset
|
74 src/ResourceManager.cpp \ |
13540
0dbf8681cd08
Seperated classes into own files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13539
diff
changeset
|
75 src/CommandLineParser.cpp \ |
13543
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
76 src/backend/OctaveCallbackThread.cpp \ |
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
77 src/backend/OctaveLink.cpp \ |
13579
6568fccb8940
Updated russian and ukrainian translation files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13574
diff
changeset
|
78 src/backend/OctaveMainThread.cpp \ |
13640
bad5cb3cfe20
Cleanly separated terminal emulation code with an interface for platform-dependent terminals.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13639
diff
changeset
|
79 src/qirc/IRCClientImpl.cpp \ |
bad5cb3cfe20
Cleanly separated terminal emulation code with an interface for platform-dependent terminals.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13639
diff
changeset
|
80 src/terminal/TerminalEmulation.cpp \ |
13643
0281f7082e4f
Added readline adapter class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13640
diff
changeset
|
81 src/terminal/LinuxTerminalEmulation.cpp \ |
0281f7082e4f
Added readline adapter class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13640
diff
changeset
|
82 src/backend/ReadlineAdapter.cpp |
13501 | 83 |
84 HEADERS += \ | |
13558
248b897d9f36
editor: custom lexer, syntax highlighting, auto completion
ttl <ttl@justmail.de>
parents:
13554
diff
changeset
|
85 src/lexer/lexeroctavegui.h \ |
13501 | 86 src/terminal/kpty.h \ |
87 src/terminal/kpty_p.h \ | |
88 src/terminal/kptydevice.h \ | |
89 src/MainWindow.h \ | |
90 src/OctaveTerminal.h \ | |
91 src/VariablesDockWidget.h \ | |
92 src/HistoryDockWidget.h \ | |
93 src/FilesDockWidget.h \ | |
94 src/FileEditorMdiSubWindow.h \ | |
95 src/BrowserWidget.h \ | |
96 src/ImageViewerMdiSubWindow.h \ | |
97 src/IRCWidget.h \ | |
13537
a43ecce77eec
Introduced a central ResourceManager class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13516
diff
changeset
|
98 src/SettingsDialog.h \ |
13539
a4b5cad8f7c6
Added command line parser class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13537
diff
changeset
|
99 src/ResourceManager.h \ |
13540
0dbf8681cd08
Seperated classes into own files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13539
diff
changeset
|
100 src/CommandLineParser.h \ |
13543
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
101 src/backend/OctaveCallbackThread.h \ |
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
102 src/backend/OctaveLink.h \ |
13579
6568fccb8940
Updated russian and ukrainian translation files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13574
diff
changeset
|
103 src/backend/OctaveMainThread.h \ |
6568fccb8940
Updated russian and ukrainian translation files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13574
diff
changeset
|
104 src/qirc/IRCClientInterface.h \ |
13640
bad5cb3cfe20
Cleanly separated terminal emulation code with an interface for platform-dependent terminals.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13639
diff
changeset
|
105 src/qirc/IRCClientImpl.h \ |
bad5cb3cfe20
Cleanly separated terminal emulation code with an interface for platform-dependent terminals.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13639
diff
changeset
|
106 src/terminal/TerminalEmulation.h \ |
13643
0281f7082e4f
Added readline adapter class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13640
diff
changeset
|
107 src/terminal/LinuxTerminalEmulation.h \ |
0281f7082e4f
Added readline adapter class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13640
diff
changeset
|
108 src/backend/ReadlineAdapter.h |
13501 | 109 |
110 FORMS += \ | |
111 src/SettingsDialog.ui |