summaryrefslogtreecommitdiff
path: root/src/Makefile_Ecore_Js.am
diff options
context:
space:
mode:
authorFelipe Magno de Almeida <felipe@expertisesolutions.com.br>2014-09-01 15:08:49 -0300
committerFelipe Magno de Almeida <felipe@expertisesolutions.com.br>2015-12-23 23:59:40 -0200
commita3db1dddd3ba67c81118f7f2c0bc753dc8aac551 (patch)
tree233ee1be7bfa299bff560207135d20940c4e411f /src/Makefile_Ecore_Js.am
parent1a3cb45f1cc7fdf8d481879e6bd7349d9cb0b3fa (diff)
downloadefl-a3db1dddd3ba67c81118f7f2c0bc753dc8aac551.tar.gz
efl-js: JavaScript Eolian binding
To configure efl sources with bindings to use in nodejs add ––with-js=nodejs in configure flags to generate node files $ configure --with-js=nodejs and compile normally with: $ make $ make install To use, you have to require efl: efl = require('efl') The bindings is divided in two parts: generated and manually written. The generation uses the Eolian library for parsing Eo files and generate C++ code that is compiled against V8 interpreter library to create a efl.node file that can be required in a node.js instance. @feature
Diffstat (limited to 'src/Makefile_Ecore_Js.am')
-rw-r--r--src/Makefile_Ecore_Js.am19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Makefile_Ecore_Js.am b/src/Makefile_Ecore_Js.am
new file mode 100644
index 0000000000..df5ac2f5b1
--- /dev/null
+++ b/src/Makefile_Ecore_Js.am
@@ -0,0 +1,19 @@
+
+### Library
+
+if HAVE_JS
+installed_ecorejsheadersdir = $(includedir)/ecore-js-@VMAJ@
+dist_installed_ecorejsheaders_DATA = \
+bindings/js/ecore_js/Ecore_Js.hh \
+bindings/js/ecore_js/ecore_js_init.hh \
+bindings/js/ecore_js/ecore_js_mainloop.hh \
+bindings/js/ecore_js/ecore_js_timer.hh \
+bindings/js/ecore_js/ecore_js_event.hh \
+bindings/js/ecore_js/ecore_js_job.hh \
+bindings/js/ecore_js/ecore_js_idle.hh \
+bindings/js/ecore_js/ecore_js_animator.hh \
+bindings/js/ecore_js/ecore_js_poller.hh \
+bindings/js/ecore_js/ecore_js_throttle.hh \
+bindings/js/ecore_js/ecore_js_file.hh
+endif
+