examples/ecore: fix vnc example build

Fix missing dependency.

Get rid of the following error:

/usr/bin/ld: ecore_evas_vnc.o: undefined reference
  to symbol 'ECORE_EVENT_MOUSE_BUTTON_UP'
src/lib/ecore_input/.libs/libecore_input.so.1: error adding symbols:
  DSO missing from command line
collect2: error: ld returned 1 exit status
Makefile:2306: recipe for target 'ecore_evas_vnc' failed
This commit is contained in:
Bruno Dilly 2016-09-27 18:17:07 -03:00
parent ce97a042e3
commit e2afcc0ab4
1 changed files with 2 additions and 1 deletions

View File

@ -205,7 +205,8 @@ ecore_evas_window_sizes_example_SOURCES = ecore_evas_window_sizes_example.c
ecore_evas_window_sizes_example_LDADD = $(ECORE_EVAS_COMMON_LDADD)
ecore_evas_vnc_SOURCES = ecore_evas_vnc.c
ecore_evas_vnc_LDADD = $(ECORE_EVAS_COMMON_LDADD)
ecore_evas_vnc_LDADD = $(ECORE_EVAS_COMMON_LDADD) \
$(top_builddir)/src/lib/ecore_input/libecore_input.la
ecore_event_example_01_SOURCES = ecore_event_example_01.c
ecore_event_example_01_LDADD = $(ECORE_COMMON_LDADD)