diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2016-01-31 05:04:50 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2016-01-31 05:04:50 +0100 |
commit | ea0179e342343f5fbefb265bde4dea0d475f0781 (patch) | |
tree | 70af3013fe80707c802e88cae93bb5d504da2f55 /src/interface.h | |
parent | 2951f147ad24737e2c40a5fa4ace611a9b3fb829 (diff) | |
download | sciteco-ea0179e342343f5fbefb265bde4dea0d475f0781.tar.gz |
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.
Diffstat (limited to 'src/interface.h')
-rw-r--r-- | src/interface.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |