Mercurial > hg > octave-max
annotate gui/octave-gui.pro @ 13543:8d529f8103dc
Separated backend files to folder.
author | Jacob Dawid <jacob.dawid@googlemail.com> |
---|---|
date | Tue, 26 Jul 2011 23:15:38 +0200 |
parents | 0dbf8681cd08 |
children | 324adf6109e7 |
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: | |
20 QT += core gui webkit xml opengl # Qt modules | |
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 | |
29 TRANSLATIONS += languages/german # Available translations | |
30 LIBS += -lqscintilla2 | |
31 | |
32 mac { | |
33 CONFIG -= app_bundle | |
34 } | |
35 | |
36 # Includepaths and libraries to link against: | |
13543
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
37 INCLUDEPATH += src src/terminal src/qirc src/backend |
13501 | 38 INCFLAGS += $$system(mkoctfile -p INCFLAGS) |
39 mac { | |
40 INCFLAGS += -I/opt/local-native/include | |
41 } | |
42 | |
43 LFLAGS += $$system(mkoctfile -p LFLAGS) \ | |
44 $$system(mkoctfile -p OCTAVE_LIBS) \ | |
45 $$system(mkoctfile -p LIBS) | |
46 mac { | |
47 LFLAGS += -L/opt/local-native/lib | |
48 } | |
49 | |
50 QMAKE_LFLAGS += $$LFLAGS -lutil $$system(mkoctfile -p RLD_FLAG) | |
51 QMAKE_CXXFLAGS += $$INCFLAGS | |
52 | |
53 # Files associated with the project: | |
54 SOURCES +=\ | |
55 src/terminal/TerminalCharacterDecoder.cpp \ | |
56 src/terminal/KeyboardTranslator.cpp \ | |
57 src/terminal/Screen.cpp \ | |
58 src/terminal/History.cpp \ | |
59 src/terminal/konsole_wcwidth.cpp \ | |
60 src/terminal/ScreenWindow.cpp \ | |
61 src/terminal/Emulation.cpp \ | |
62 src/terminal/Vt102Emulation.cpp \ | |
63 src/terminal/TerminalDisplay.cpp \ | |
64 src/terminal/Filter.cpp \ | |
65 src/terminal/Pty.cpp \ | |
66 src/terminal/kpty.cpp \ | |
67 src/terminal/kptyprocess.cpp \ | |
68 src/terminal/kprocess.cpp \ | |
69 src/terminal/kptydevice.cpp \ | |
70 src/terminal/Session.cpp \ | |
71 src/terminal/ShellCommand.cpp \ | |
72 src/terminal/QTerminalWidget.cpp \ | |
73 src/MainWindow.cpp \ | |
74 src/terminal/ProcessInfo.cpp \ | |
75 src/OctaveTerminal.cpp \ | |
76 src/VariablesDockWidget.cpp \ | |
77 src/HistoryDockWidget.cpp \ | |
78 src/FilesDockWidget.cpp \ | |
79 src/FileEditorMdiSubWindow.cpp \ | |
80 src/BrowserWidget.cpp \ | |
81 src/ImageViewerMdiSubWindow.cpp \ | |
82 src/IRCWidget.cpp \ | |
83 src/qirc/IRCClient.cpp \ | |
84 src/qirc/IClientSocket.cpp \ | |
13504
13e3d60aff2d
Replaced Quint with OctaveGUI.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13502
diff
changeset
|
85 src/SettingsDialog.cpp \ |
13537
a43ecce77eec
Introduced a central ResourceManager class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13516
diff
changeset
|
86 src/OctaveGUI.cpp \ |
13539
a4b5cad8f7c6
Added command line parser class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13537
diff
changeset
|
87 src/ResourceManager.cpp \ |
13540
0dbf8681cd08
Seperated classes into own files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13539
diff
changeset
|
88 src/CommandLineParser.cpp \ |
13543
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
89 src/backend/OctaveCallbackThread.cpp \ |
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
90 src/backend/OctaveLink.cpp \ |
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
91 src/backend/OctaveMainThread.cpp |
13501 | 92 |
93 HEADERS += \ | |
94 src/terminal/TerminalCharacterDecoder.h \ | |
95 src/terminal/Character.h \ | |
96 src/terminal/CharacterColor.h \ | |
97 src/terminal/ColorTables.h \ | |
98 src/terminal/KeyboardTranslator.h \ | |
99 src/terminal/Screen.h \ | |
100 src/terminal/History.h \ | |
101 src/terminal/konsole_wcwidth.h \ | |
102 src/terminal/konsole_export.h \ | |
103 src/terminal/ScreenWindow.h \ | |
104 src/terminal/Emulation.h \ | |
105 src/terminal/Vt102Emulation.h \ | |
106 src/terminal/TerminalDisplay.h \ | |
107 src/terminal/Filter.h \ | |
108 src/terminal/Pty.h \ | |
109 src/terminal/kpty.h \ | |
110 src/terminal/kpty_p.h \ | |
111 src/terminal/kpty_export.h \ | |
112 src/terminal/kptyprocess.h \ | |
113 src/terminal/kprocess.h \ | |
114 src/terminal/kprocess_p.h \ | |
115 src/terminal/kptydevice.h \ | |
116 src/terminal/Session.h \ | |
117 src/terminal/ShellCommand.h \ | |
118 src/terminal/QTerminalWidget.h \ | |
119 src/MainWindow.h \ | |
120 src/terminal/ProcessInfo.h \ | |
121 src/OctaveTerminal.h \ | |
122 src/VariablesDockWidget.h \ | |
123 src/HistoryDockWidget.h \ | |
124 src/FilesDockWidget.h \ | |
125 src/FileEditorMdiSubWindow.h \ | |
126 src/BrowserWidget.h \ | |
127 src/ImageViewerMdiSubWindow.h \ | |
128 src/IRCWidget.h \ | |
129 src/qirc/IRCCodes.h \ | |
130 src/qirc/IRCClient.h \ | |
131 src/qirc/IClientSocket.h \ | |
13537
a43ecce77eec
Introduced a central ResourceManager class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13516
diff
changeset
|
132 src/SettingsDialog.h \ |
13539
a4b5cad8f7c6
Added command line parser class.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13537
diff
changeset
|
133 src/ResourceManager.h \ |
13540
0dbf8681cd08
Seperated classes into own files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13539
diff
changeset
|
134 src/CommandLineParser.h \ |
13543
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
135 src/backend/OctaveCallbackThread.h \ |
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
136 src/backend/OctaveLink.h \ |
8d529f8103dc
Separated backend files to folder.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13540
diff
changeset
|
137 src/backend/OctaveMainThread.h |
13501 | 138 |
139 FORMS += \ | |
140 src/SettingsDialog.ui |