Examples: Fix compilation on Windows for eina, eio, elocation and eolian_cxx

Summary:
When compiling on Windows, Evil.h must be included, so update Makefile.am
accordinglY

Reviewers: cedric, jpeg

Reviewed By: jpeg

Subscribers: jpeg

Differential Revision: https://phab.enlightenment.org/D3439
This commit is contained in:
Vincent Torri 2015-12-15 14:43:27 +09:00 committed by Jean-Philippe Andre
parent 6c05bea472
commit 84fc3b636e
4 changed files with 24 additions and 0 deletions

View File

@ -8,6 +8,12 @@ AM_CPPFLAGS = \
-I$(top_srcdir)/src/lib/eina \
-I$(top_builddir)/src/lib/eina
if HAVE_WINDOWS
AM_CPPFLAGS += \
-I$(top_srcdir)/src/lib/evil \
-I$(top_builddir)/src/lib/evil
endif
LDADD = $(top_builddir)/src/lib/eina/libeina.la @EINA_LDFLAGS@
SRCS = \

View File

@ -15,6 +15,12 @@ AM_CPPFLAGS = \
-I$(top_builddir)/src/lib/ecore \
-I$(top_builddir)/src/lib/eio
if HAVE_WINDOWS
AM_CPPFLAGS += \
-I$(top_srcdir)/src/lib/evil \
-I$(top_builddir)/src/lib/evil
endif
EXTRA_PROGRAMS = \
eio_file_ls \
eio_file_copy

View File

@ -13,6 +13,12 @@ AM_CPPFLAGS = \
-I$(top_builddir)/src/lib/eldbus \
-I$(top_builddir)/src/lib/elocation
if HAVE_WINDOWS
AM_CPPFLAGS += \
-I$(top_srcdir)/src/lib/evil \
-I$(top_builddir)/src/lib/evil
endif
EXTRA_PROGRAMS = \
elocation

View File

@ -42,6 +42,12 @@ AM_CXXFLAGS = \
-I$(top_srcdir)/src/lib/ecore_evas \
-I$(top_builddir)/src/lib/ecore_evas
if HAVE_WINDOWS
AM_CXXFLAGS += \
-I$(top_srcdir)/src/lib/evil \
-I$(top_builddir)/src/lib/evil
endif
AM_CFLAGS = $(AM_CXXFLAGS)
AM_LDFLAGS = \