summaryrefslogtreecommitdiff
path: root/Makefile_Eolian_Js_Helper.am
Commit message (Collapse)AuthorAgeFilesLines
* efl-js: JavaScript Eolian bindingFelipe Magno de Almeida2015-12-231-0/+15
To configure elementary sources with bindings to use in nodejs add ––with-js=nodejs in configure flags in EFL compilation to generate node files, then compile elementary normally: path/to/efl$ configure --with-js=nodejs path/to/efl$ make path/to/efl$ make install path/to/elm$ configure path/to/efl$ make path/to/efl$ make install To use, you have to require elm: elm = require('elm') 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 elm.node file that can be required in a node.js instance. @feature