engage-engine 1.216.90540001

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Engage!
2
+
3
+ This folder contains the items needed to build the binding between node.js and the Engage Engine. In general, you should obtain the pre-built package from npm by:
4
+
5
+ ```
6
+ npm install engage-engine
7
+ ```
8
+
9
+ However, if you want to build a package of your own, or change the code for the binding, feel free to do it here. The best way to do this is ro run the **publish-to-npm.sh** script.
package/binding.gyp ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "targets":
3
+ [
4
+ {
5
+ "target_name": "engage-engine",
6
+ "sources": [ "engage.cpp" ],
7
+ "include_dirs":
8
+ [
9
+ "<(module_root_dir)/include/",
10
+ "<!(node -e \"require('nan')\")",
11
+ "<!(node -e \"require('node-gyp')\")",
12
+ ],
13
+
14
+ "link_settings":
15
+ {
16
+ "libraries": ["-lengage-shared"],
17
+ "library_dirs": ["<(module_root_dir)/lib/<!(node -p process.platform).<!(node -p process.arch)"]
18
+ }
19
+ }
20
+ ]
21
+ }