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
986284b9
Commit
986284b9
authored
Feb 16, 2015
by
Mithgol the Webmaster
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
correct sources of nwjs downloads and perform x64 builds on AppVeyor
parent
6e564fba
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
4 deletions
+32
-4
appveyor.yml
appveyor.yml
+2
-3
build_for_node_webkit.cmd
scripts/build_for_node_webkit.cmd
+30
-1
No files found.
appveyor.yml
View file @
986284b9
...
...
@@ -9,7 +9,6 @@ environment:
platform
:
x86
msvs_toolset
:
12
-
nodejs_version
:
0.10.36
nw_version
:
0.8.6
platform
:
x64
msvs_toolset
:
12
-
nodejs_version
:
0.12.0
...
...
@@ -19,11 +18,11 @@ environment:
platform
:
x64
msvs_toolset
:
12
-
nodejs_version
:
1.1.0
nw_version
:
0.12.0-alpha3
nw
js
_version
:
0.12.0-alpha3
platform
:
x86
msvs_toolset
:
12
-
nodejs_version
:
1.1.0
nw_version
:
0.12.0-alpha3
nw
js
_version
:
0.12.0-alpha3
platform
:
x64
msvs_toolset
:
12
# custom visual studio 2014 builds
...
...
scripts/build_for_node_webkit.cmd
View file @
986284b9
echo Platform: %1
echo The list of environment variables:
set
if not "%nwjs_version%" == "" goto nwjs
if not "%1" == "x86" goto end
if "%nw_version%" == "" goto end
call npm install nw-gyp
call cinst wget 7zip.commandline
call wget http://dl.n
ode-webkit.org
/v%nw_version%/node-webkit-v%nw_version%-win-ia32.zip
call wget http://dl.n
wjs.io
/v%nw_version%/node-webkit-v%nw_version%-win-ia32.zip
call 7z e -onw node-webkit-v%nw_version%-win-ia32.zip
dir nw
set PATH=nw;%PATH%
call node-pre-gyp rebuild --runtime=node-webkit --target=%nw_version% --target_arch=ia32
call node-pre-gyp package testpackage --runtime=node-webkit --target=%nw_version% --target_arch=ia32
if not "%CM%" == "%CM:[publish binary]=%" call node-pre-gyp publish --msvs_version=2013 --runtime=node-webkit --target=%nw_version% --target_arch=ia32
goto end
:nwjs
if not "%1" == "x86" goto nwjs_64
call npm install nw-gyp
call cinst wget 7zip.commandline
call wget http://dl.nwjs.io/v%nwjs_version%/nwjs-v%nwjs_version%-win-ia32.zip
call 7z e -onw nwjs-v%nwjs_version%-win-ia32.zip
dir nw
set PATH=nw;%PATH%
call node-pre-gyp rebuild --runtime=node-webkit --target=%nwjs_version% --target_arch=ia32
call node-pre-gyp package testpackage --runtime=node-webkit --target=%nwjs_version% --target_arch=ia32
if not "%CM%" == "%CM:[publish binary]=%" call node-pre-gyp publish --msvs_version=2013 --runtime=node-webkit --target=%nwjs_version% --target_arch=ia32
goto end
:nwjs_64
call npm install nw-gyp
call cinst wget 7zip.commandline
call wget http://dl.nwjs.io/v%nwjs_version%/nwjs-v%nwjs_version%-win-x64.zip
call 7z e -onw nwjs-v%nwjs_version%-win-x64.zip
dir nw
set PATH=nw;%PATH%
call node-pre-gyp rebuild --runtime=node-webkit --target=%nwjs_version% --target_arch=x64
call node-pre-gyp package testpackage --runtime=node-webkit --target=%nwjs_version% --target_arch=x64
if not "%CM%" == "%CM:[publish binary]=%" call node-pre-gyp publish --msvs_version=2013 --runtime=node-webkit --target=%nwjs_version% --target_arch=x64
goto end
:end
\ 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