Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
node-sqlite3
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
俞永鹏
node-sqlite3
Commits
82f63cb4
Commit
82f63cb4
authored
Feb 12, 2012
by
Nathan Rajlich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prepare the bindings.gyp file.
parent
7ef826c1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
70 deletions
+15
-70
bindings.gyp
bindings.gyp
+15
-0
build.gyp
build.gyp
+0
-70
No files found.
bindings.gyp
0 → 100644
View file @
82f63cb4
{
'targets': [
{
'target_name': 'node_sqlite3',
'sources': [
'src/database.cc',
'src/node_sqlite3.cc',
'src/statement.cc'
],
'dependencies': [
'deps/sqlite3/sqlite3.gyp:sqlite3'
]
}
]
}
build.gyp
deleted
100644 → 0
View file @
7ef826c1
{
'variables': {
'node_module_sources': [
"src/database.cc",
"src/node_sqlite3.cc",
"src/statement.cc",
"deps/sqlite3/sqlite3.c"
],
'node_root': '/usr/local',
'node_root_win': 'c:\\node',
},
'targets': [
{
'target_name': 'node_sqlite3',
'product_name': 'node_sqlite3',
'type': 'loadable_module',
'product_prefix': '',
'product_extension':'node',
'sources': [
'<@(node_module_sources)',
],
'defines': [
'PLATFORM="<(OS)"',
'_LARGEFILE_SOURCE',
'_FILE_OFFSET_BITS=64',
],
'conditions': [
[ 'OS=="mac"', {
'libraries': [
'-undefined dynamic_lookup'
],
'include_dirs': [
'src/',
'<@(node_root)/include/node',
'<@(node_root)/include',
],
}],
[ 'OS=="win"', {
'defines': [
'PLATFORM="win32"',
'_LARGEFILE_SOURCE',
'_FILE_OFFSET_BITS=64',
'_WINDOWS',
'BUILDING_NODE_EXTENSION'
],
'libraries': [
'node.lib',
],
'include_dirs': [
'deps\\sqlite3\\',
'<@(node_root_win)\\deps\\v8\\include',
'<@(node_root_win)\\src',
'<@(node_root_win)\\deps\\uv\\include',
],
'msvs_settings': {
'VCLinkerTool': {
'AdditionalLibraryDirectories': [
'<@(node_root_win)\\Release\\lib',
'<@(node_root_win)\\Release',
],
},
},
},
], # windows
] # condition
}, # targets
],
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment