From ea0179e342343f5fbefb265bde4dea0d475f0781 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Sun, 31 Jan 2016 05:04:50 +0100 Subject: interfaces have their own automake subdirectories and convenience libraries now * use libtool convenience libraries as much as possible (for all static libraries except Scintilla) * improves separation of language and user interface implementations (e.g. the Gtk widgets are not interesting for the rest of SciTECO) * the Curses popup widget can now be factored out of interface-curses.cpp * some common CPPFLAGS are now defined by ./configure via AM_CPPFLAGS, so they don't have to be repeated in each submodule. * fixed building the Curses UI: GTK_FLOW_BOX_FALLBACK conditional must always be defined. --- src/interface.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/interface.h') diff --git a/src/interface.h b/src/interface.h index 062c377..9552984 100644 --- a/src/interface.h +++ b/src/interface.h @@ -340,9 +340,9 @@ public: } /* namespace SciTECO */ #ifdef INTERFACE_GTK -#include "interface-gtk.h" +#include "interface-gtk/interface-gtk.h" #elif defined(INTERFACE_CURSES) -#include "interface-curses.h" +#include "interface-curses/interface-curses.h" #else #error No interface selected! #endif -- cgit v1.2.3