comparison libinterp/octave.cc @ 31222:1a0756f7c90a

disable experimental terminal widget when building without qscintilla * command-widget.cc: inlcude into #if defined (HAVE_QSCINTILLA) * main-window.cc: include command-widget.h only if HAVE_QSCINTILLA * module.mk: only build moc-command-widget.cc if HAVE_QSCINTILLA * octave-qobject.cc: include command-widget.h only if HAVE_QSCINTILLA, (base_qobject::terminal_widget): use conditional compilation where referring to new terminal widget * terminal-dock-widget.cc: include command-widget.h only if HAVE_QSCINTILLA, (terminal_dock_widget, init_command_prompt): use conditional compilation where referring to new terminal widget * terminal-dock-widget.h: use conditional compilation where referring to new terminal widget Thu Sep 01 02:34:37 2022 +0200 * octave.cc (cmdline_options): only return true on experimental terminal widget option if built with scintilla
author Torsten Lilge <ttl-octave@mailbox.org>
date Sat, 03 Sep 2022 00:18:49 +0200
parents 32d2b6604a9f
children 4b80982e0af8
comparison
equal deleted inserted replaced
31221:f5755dbacd8d 31222:1a0756f7c90a
157 if (octave_optarg_wrapper ()) 157 if (octave_optarg_wrapper ())
158 m_exec_path = octave_optarg_wrapper (); 158 m_exec_path = octave_optarg_wrapper ();
159 break; 159 break;
160 160
161 case EXPERIMENTAL_TERMINAL_WIDGET_OPTION: 161 case EXPERIMENTAL_TERMINAL_WIDGET_OPTION:
162 #if defined (HAVE_QSCINTILLA)
162 m_experimental_terminal_widget = true; 163 m_experimental_terminal_widget = true;
164 #endif
163 break; 165 break;
164 166
165 case GUI_OPTION: 167 case GUI_OPTION:
166 m_gui = true; 168 m_gui = true;
167 break; 169 break;