summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSavio Sena <savio@expertisesolutions.com.br>2014-05-20 12:19:25 +0900
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2014-05-20 12:19:25 +0900
commit3e5408cfb0993d582f5d32e37b45fe665b80ae3d (patch)
treef9309e24c6610cc7f794519e451995677b0cf1b5
parent4112c72ae40d1de3abc5987241bf01bd566e63b2 (diff)
downloadefl-3e5408cfb0993d582f5d32e37b45fe665b80ae3d.tar.gz
autotools: Fix Makefile_Ecore_Audio_Cxx.am.
Summary: This patch fixes T1246. Reviewers: cedric, smohanty, stefan_schmidt, raster Reviewed By: raster CC: felipealmeida, cedric Maniphest Tasks: T1246 Differential Revision: https://phab.enlightenment.org/D873
-rw-r--r--src/Makefile_Ecore_Audio_Cxx.am37
1 files changed, 21 insertions, 16 deletions
diff --git a/src/Makefile_Ecore_Audio_Cxx.am b/src/Makefile_Ecore_Audio_Cxx.am
index 94ebc43b75..a5b408d615 100644
--- a/src/Makefile_Ecore_Audio_Cxx.am
+++ b/src/Makefile_Ecore_Audio_Cxx.am
@@ -3,8 +3,7 @@ if HAVE_CXX11
### Generated headers
-generated_ecore_audio_cxx_bindings =
-#\
+generated_ecore_audio_cxx_bindings = \
lib/ecore_audio/ecore_audio.eo.hh \
lib/ecore_audio/ecore_audio_in.eo.hh \
lib/ecore_audio/ecore_audio_out.eo.hh \
@@ -13,7 +12,7 @@ lib/ecore_audio/ecore_audio_out_sndfile.eo.hh \
lib/ecore_audio/ecore_audio_out_pulse.eo.hh \
lib/ecore_audio/ecore_audio_in_tone.eo.hh
-#BUILT_SOURCES += \
+BUILT_SOURCES += \
lib/ecore_audio/Ecore_Audio.hh \
$(generated_ecore_audio_cxx_bindings)
@@ -24,27 +23,33 @@ lib/ecore_audio/Ecore_Audio.hh:
@echo -e "#endif\n\n#endif\n" >> $(top_builddir)/src/lib/ecore_audio/Ecore_Audio.hh
installed_ecoreaudiocxxmainheadersdir = $(includedir)/ecore-audio-cxx-@VMAJ@
-#dist_installed_ecoreaudiocxxmainheaders_DATA = \
+nodist_installed_ecoreaudiocxxmainheaders_DATA = \
lib/ecore_audio/Ecore_Audio.hh \
$(generated_ecore_audio_cxx_bindings)
### Unit tests
-# if EFL_ENABLE_TESTS
+if EFL_ENABLE_TESTS
-# check_PROGRAMS += tests/ecore_audio_cxx/cxx_compile_test
-# TESTS += tests/ecore_audio_cxx/cxx_compile_test
+check_PROGRAMS += tests/ecore_audio_cxx/cxx_compile_test
+TESTS += tests/ecore_audio_cxx/cxx_compile_test
-# tests_ecore_audio_cxx_cxx_compile_test_SOURCES = tests/ecore_audio_cxx/cxx_compile_test.cc
-# tests_ecore_audio_cxx_cxx_compile_test_CPPFLAGS = -I$(top_builddir)/src/lib/efl -I$(top_builddir)/src/lib/efl \
-# -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/ecore_audio_cxx\" \
-# -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/ecore_audio_cxx\" \
-# @CHECK_CFLAGS@ @ECORE_CFLAGS@ @EINA_CFLAGS@ @EO_CFLAGS@ @ECORE_AUDIO_CFLAGS@ \
-# @ECORE_CXX_CFLAGS@ @EINA_CXX_CFLAGS@ @EO_CXX_CFLAGS@ @ECORE_AUDIO_CXX_CFLAGS@
+tests_ecore_audio_cxx_cxx_compile_test_SOURCES = tests/ecore_audio_cxx/cxx_compile_test.cc
+tests_ecore_audio_cxx_cxx_compile_test_CPPFLAGS = \
+-I$(top_builddir)/src/lib/efl \
+-I$(top_srcdir)/src/lib/efl \
+-I$(builddir)/src/lib/efl \
+-I$(srcdir)/src/lib/efl \
+-DTESTS_WD=\"`pwd`\" \
+-DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/ecore_audio_cxx\" \
+-DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)/src/tests/ecore_audio_cxx\" \
+-DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/ecore_audio_cxx\" \
+@CHECK_CFLAGS@ @ECORE_CFLAGS@ @EINA_CFLAGS@ @EO_CFLAGS@ @ECORE_AUDIO_CFLAGS@ \
+@ECORE_CXX_CFLAGS@ @EINA_CXX_CFLAGS@ @EO_CXX_CFLAGS@ @ECORE_AUDIO_CXX_CFLAGS@
-# tests_ecore_audio_cxx_cxx_compile_test_LDADD = @CHECK_LIBS@ @USE_ECORE_LIBS@
-# tests_ecore_audio_cxx_cxx_compile_test_DEPENDENCIES = @USE_ECORE_INTERNAL_LIBS@
+tests_ecore_audio_cxx_cxx_compile_test_LDADD = @CHECK_LIBS@ @USE_ECORE_LIBS@
+tests_ecore_audio_cxx_cxx_compile_test_DEPENDENCIES = @USE_ECORE_INTERNAL_LIBS@
-# endif
+endif
endif