diff options
author | Timothy J Fontaine <tjfontaine@gmail.com> | 2014-07-31 11:17:31 -0700 |
---|---|---|
committer | Timothy J Fontaine <tjfontaine@gmail.com> | 2014-07-31 11:17:31 -0700 |
commit | 643a21c09761fa252f7769676abe6495a01f4b39 (patch) | |
tree | 9841a44aca2f0af124abda02ff3e8423c53296fe | |
parent | 0c766cbdfe25976bdada81037dfc2350d596aca4 (diff) | |
download | node-v0.8.28-release.tar.gz |
build: run wix tool chain out of processv0.8.28v0.8.28-release
Building MSIs for different arch's can sometimes confuse MSBuild and
Wix, isntead run the toolchain externally so we don't have to worry
about which arch cmd.exe is running as.
-rw-r--r-- | tools/msvs/msi/nodemsi.wixproj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/msvs/msi/nodemsi.wixproj b/tools/msvs/msi/nodemsi.wixproj index 6612f2e11..f870f844b 100644 --- a/tools/msvs/msi/nodemsi.wixproj +++ b/tools/msvs/msi/nodemsi.wixproj @@ -50,7 +50,7 @@ </ItemGroup> <Import Project="$(WixTargetsPath)" /> <Target Name="BeforeBuild"> - <HeatDirectory ToolPath="$(WixToolPath)" Directory="..\..\..\deps\npm" PreprocessorVariable="var.NPMSourceDir" DirectoryRefId="NodeModulesFolder" ComponentGroupName="NPMFiles" GenerateGuidsNow="true" SuppressFragments="false" OutputFile="..\..\..\npm.wxs"> + <HeatDirectory ToolPath="$(WixToolPath)" Directory="..\..\..\deps\npm" PreprocessorVariable="var.NPMSourceDir" DirectoryRefId="NodeModulesFolder" ComponentGroupName="NPMFiles" GenerateGuidsNow="true" SuppressFragments="false" OutputFile="..\..\..\npm.wxs" RunAsSeparateProcess="true"> </HeatDirectory> </Target> </Project> |