realm-js/binding.gyp
Yavor Georgiev ffb0f84361
Refactor gyp files
This makes it possible to build realm-js-private with the Visual Studio gyp generator
2017-09-30 15:49:50 +02:00

29 lines
503 B
Python

{
"includes": [
"binding.gypi"
],
"targets": [
{
"target_name": "realm",
"dependencies": [ "realm-js" ],
"include_dirs": [
"src"
],
"sources": [
"src/node/node_init.cpp"
]
},
{
"target_name": "action_after_build",
"type": "none",
"dependencies": [ "realm" ],
"copies": [
{
"files": [ "<(PRODUCT_DIR)/realm.node" ],
"destination": "<(module_path)"
}
]
}
]
}