Remove binding.gyp file for now

This commit is contained in:
Scott Kyle 2016-04-18 15:44:23 -07:00
parent fc49470b3c
commit bc4bda876c
2 changed files with 1 additions and 42 deletions

1
.gitignore vendored
View File

@ -95,6 +95,7 @@ build/
.rvmrc .rvmrc
# node.js # node.js
/binding.gyp
node_modules/ node_modules/
npm-debug.log npm-debug.log

View File

@ -1,42 +0,0 @@
{
"targets": [
{
"target_name": "realm",
"sources": [
"src/js_realm.cpp",
"src/node/node_init.cpp",
"src/object-store/src/index_set.cpp",
"src/object-store/src/list.cpp",
"src/object-store/src/object_schema.cpp",
"src/object-store/src/object_store.cpp",
"src/object-store/src/results.cpp",
"src/object-store/src/schema.cpp",
"src/object-store/src/shared_realm.cpp",
"src/object-store/src/impl/async_query.cpp",
"src/object-store/src/impl/transact_log_handler.cpp",
"src/object-store/src/impl/realm_coordinator.cpp",
"src/object-store/src/impl/apple/external_commit_helper.cpp",
"src/object-store/src/impl/apple/weak_realm_notifier.cpp",
"src/object-store/src/parser/parser.cpp",
"src/object-store/src/parser/query_builder.cpp",
"src/ios/platform.mm"
],
"include_dirs": [
"core/include",
"node_modules/nan",
"src",
"src/object-store/src",
"src/object-store/src/impl",
"src/object-store/src/impl/apple",
"src/object-store/src/parser",
"src/object-store/external/pegtl"
],
"cflags_cc": ["-DREALM_HAVE_CONFIG", "-fexceptions", "-frtti", "-std=c++14", "-g", "-O0"],
"ldflags": ["-Lcore", "-lrealm"],
"xcode_settings": {
"OTHER_CFLAGS": ["-mmacosx-version-min=10.8", "-DREALM_HAVE_CONFIG", "-fexceptions", "-frtti", "-std=c++14", "-stdlib=libc++", "-g", "-O0", "-Wno-mismatched-tags"],
"OTHER_LDFLAGS": ["-mmacosx-version-min=10.8", "-framework", "Foundation", "-Lcore", "-lrealm", "-std=c++14"]
}
}
]
}