realm-js/binding.gyp

34 lines
625 B
Plaintext
Raw Normal View History

2016-10-04 22:02:51 +00:00
{
"includes": [
"target_defaults.gypi",
"realm.gypi"
2016-10-04 22:02:51 +00:00
],
"targets": [
{
"target_name": "realm",
"dependencies": [
"object-store"
2016-10-04 22:02:51 +00:00
],
"sources": [
"src/node/platform.cpp",
"src/js_realm.cpp",
"src/node/node_init.cpp"
],
"include_dirs": [
"src"
]
2016-10-04 22:02:51 +00:00
},
{
"target_name": "action_after_build",
"type": "none",
"dependencies": [ "<(module_name)" ],
"copies": [
2016-10-04 22:02:51 +00:00
{
"files": [ "<(PRODUCT_DIR)/<(module_name).node" ],
"destination": "<(module_path)"
2016-10-04 22:02:51 +00:00
}
]
}
2016-10-04 22:02:51 +00:00
]
}