From 21f182567ad071446dc8270b8b1589f31a4f5f76 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Mon, 12 Sep 2016 10:05:12 +0200 Subject: [PATCH] examples: elementary: fix build for cxx examples needing ecore_cxx includes The elementary cxx examples now need Ecore_Manual.hh from the cxx bindings. Make sure we setup the include paths accordingly. --- src/examples/elementary/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/examples/elementary/Makefile.am b/src/examples/elementary/Makefile.am index 56984af37b..84bc4911de 100644 --- a/src/examples/elementary/Makefile.am +++ b/src/examples/elementary/Makefile.am @@ -26,6 +26,8 @@ AM_CPPFLAGS = \ -I$(top_builddir)/src/bindings/cxx/eo_cxx \ -I$(top_srcdir)/src/bindings/cxx/eldbus_cxx \ -I$(top_builddir)/src/bindings/cxx/eldbus_cxx \ +-I$(top_srcdir)/src/bindings/cxx/ecore_cxx \ +-I$(top_builddir)/src/bindings/cxx/ecore_cxx \ -I$(top_srcdir)/src/lib/ector \ -I$(top_builddir)/src/lib/ector \ -I$(top_srcdir)/src/lib/evas \