summaryrefslogtreecommitdiff
path: root/vcbuild.bat
AgeCommit message (Collapse)Author
2012-06-14vcbuild.bat: add duplicate arg-ok label to work around cmd.exe bugBert Belder
2012-06-14test: bundle node-weak in test/gc so that it doesn't need to be downloadedNathan Rajlich
2012-06-13Windows: Enable ETW events.Igor Zinkovsky
This commit enables ETW events to be fired on Windows for existing DTrace probes. ETW instrumentation is enabled by default. It is possible to build node.exe without ETW instrumentation by using --without-etw option with configure script.
2012-06-02windows/msi: cleanup WiX project filesJeroen Janssen
The current WiX project files do some manual processing and generation which WiX supports doing out of the box. This patch will use the HeatDirectory task to generate the npm.wxs file and use the auto GUID generation. I also changed the msi filename generation to include the version number to match the currently used name for released msi files. Closes #3360
2012-06-02windows: don't install x64 version into the 'program files (x86)' folderMatt Gollob
* Update nodemsi.sln and .wixproj to include support for x64 platform - Add ProgramFilesFolderId to the DefineConstants property for each configuration/platform's property group with the appropriate value (ProgramFilesFolder for x86 builds, ProgramFiles64Folder for x64 builds) * Update product.wxs: - update the Id value for the "Program Files" Directory element to use a preprocessor constant. - remove hard-coded platform from the Package element. MSI platform will be automatically detected based on MSBuild's Platform property. (This was already supported in the Wix MSBuild targets, we just weren't taking advantage of it.) * Update vcbuild.bat to set MSBuild's Platform property appropriately, defaulting to x86 if not explicitly supplied by the user. Note that creating an x64 build requires that vcbuild.bat be run from a VS 64-bit command prompt. Closes #3312 Closes #3356
2012-04-04Windows: add build step that generates license.rtf from LICENSEBert Belder
2012-03-15vcbuild: run the 'configure' script in vcbuild.batNathan Rajlich
So that a 'config.gypi' file gets generated, which is required for the `process.config` object (see #2928).
2012-03-08add jslint to vcbuild.batIgor Zinkovsky
2012-02-28build: fix the help output of vcbuild.batShigeki Ohtsu
2012-02-23build: change default BUILDTYPE of vcbuild.batShigeki Ohtsu
From Debug to Release.
2012-02-18Merge remote-tracking branch 'ry/v0.6' into v0.6-mergeisaacs
Conflicts: AUTHORS ChangeLog Makefile doc/about/index.html doc/api/tls.markdown doc/community/index.html doc/index.html doc/logos/index.html doc/template.html lib/http.js lib/tls.js src/node_version.h src/platform_win32.cc test/simple/test-tls-connect-given-socket.js
2012-02-12Fix vcbuild.bat, print error when an unrecognized option is encounteredBert Belder
2012-02-12Merge remote-tracking branch 'origin/v0.6'Ben Noordhuis
Conflicts: common.gypi
2012-02-07enable x64 windows buildIgor Zinkovsky
use "vcbuild x64" to do x64 build of node.exe
2012-01-09Merge remote branch 'origin/v0.6'Ryan Dahl
Conflicts: Makefile configure src/node_version.h
2012-01-06support nosnapshot in vcbuild.batRyan Dahl
2011-12-29Make msbuild run in parallel.Ben Noordhuis
2011-12-09Fix MSI generation on VC ExpressIgor Zinkovsky
2011-12-08Enable upgrades in MSI.Igor Zinkovsky
Fixes #2228.
2011-11-22Add exe and msi signing to vcbuild.batRyan Dahl
2011-11-22Fixes #2083. Support installing npm in the .msiRyan Dahl
2011-11-17Fix strange vcbuild "label not found" errorBert Belder
2011-11-11Be consistent with v before version in packagesRyan Dahl
2011-11-11Add upload command to vcbuild.batRyan Dahl
2011-11-11Simplify and move getnodeversion.pyRyan Dahl
2011-11-10fix msi builderIgor Zinkovsky
2011-11-02Remove separation of libuv testsRyan Dahl
2011-10-11wix project to create msi installer for windowsTomasz Janczuk
Fixes #1706.
2011-09-05win: vcbuild.bat should attempt to run vcvarsall.batBert Belder
2011-08-26merge vcbuild.bat and generate_projects.batIgor Zinkovsky
2011-08-23vcbuild.bat - for building from cmd-line using msbuildIgor Zinkovsky