mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-09 22:05:57 +00:00
ffb0f84361
This makes it possible to build realm-js-private with the Visual Studio gyp generator
29 lines
503 B
Python
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)"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|