summaryrefslogtreecommitdiff
path: root/pc/eo-js.pc.in
Commit message (Collapse)AuthorAgeFilesLines
* efl-js: JavaScript Eolian bindingFelipe Magno de Almeida2015-12-231-0/+15
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