Commit e6b1f79f by Dane Springmeyer

add gyp files for building without messing with visual studio UI

parent 78f2eecb
{
'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

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
# Visual C++ Express 2010
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "node_sqlite3", "node-sqlite3.vcxproj", "{2018883C-427E-4E54-B1CB-9A232C3B2844}"
EndProject
Global
......
No preview for this file type
del build.sln
python gyp/gyp build.gyp --depth=. -f msvs -G msvs_version=2010
msbuild build.sln
copy Default\\node_sqlite3.node lib\\node_sqlite3.node
rem test!
rem set NODE_PATH=lib
rem node node_modules\expresso\bin\expresso
rem node -e "console.log(require('eio'))"
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment