Merge pull request #108 from steji113/master
scripts: Add VS2013 static builds to nuget package
This commit is contained in:
commit
55cea93e6c
2 changed files with 20 additions and 4 deletions
|
@ -1,3 +1,11 @@
|
|||
configurations {
|
||||
// This node contains custom pivot information.
|
||||
Toolset
|
||||
{
|
||||
key: "PlatformToolset";
|
||||
choices: { v140, v120, v110, v100 };
|
||||
}
|
||||
}
|
||||
nuget {
|
||||
nuspec {
|
||||
id = pugixml;
|
||||
|
@ -24,9 +32,13 @@ nuget {
|
|||
files {
|
||||
include: { "..\src\*.hpp" };
|
||||
|
||||
[x86,release] { lib: vs2015\Win32_Release\pugixml.lib; }
|
||||
[x86,debug] { lib: vs2015\Win32_Debug\pugixml.lib; }
|
||||
[x64,release] { lib: vs2015\x64_Release\pugixml.lib; }
|
||||
[x64,debug] { lib: vs2015\x64_Debug\pugixml.lib; }
|
||||
[x86,v120,static,release] { lib: vs2013\x32\pugixmls.lib; }
|
||||
[x86,v120,static,debug] { lib: vs2013\x32\pugixmlsd.lib; }
|
||||
[x64,v120,static,release] { lib: vs2013\x64\pugixmls.lib; }
|
||||
[x64,v120,static,debug] { lib: vs2013\x64\pugixmlsd.lib; }
|
||||
[x86,v140,static,release] { lib: vs2015\Win32_Release\pugixml.lib; }
|
||||
[x86,v140,static,debug] { lib: vs2015\Win32_Debug\pugixml.lib; }
|
||||
[x64,v140,static,release] { lib: vs2015\x64_Release\pugixml.lib; }
|
||||
[x64,v140,static,debug] { lib: vs2015\x64_Debug\pugixml.lib; }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,10 @@
|
|||
cd %~dp0
|
||||
|
||||
"%VS140COMNTOOLS%\VsMSBuildCmd.bat" && ^
|
||||
msbuild pugixml_vs2013_static.vcxproj /t:Rebuild /p:Configuration=Debug /p:Platform=x86 /v:minimal /nologo && ^
|
||||
msbuild pugixml_vs2013_static.vcxproj /t:Rebuild /p:Configuration=Release /p:Platform=x86 /v:minimal /nologo && ^
|
||||
msbuild pugixml_vs2013_static.vcxproj /t:Rebuild /p:Configuration=Debug /p:Platform=x64 /v:minimal /nologo && ^
|
||||
msbuild pugixml_vs2013_static.vcxproj /t:Rebuild /p:Configuration=Release /p:Platform=x64 /v:minimal /nologo && ^
|
||||
msbuild pugixml_vs2015.vcxproj /t:Rebuild /p:Configuration=Debug /p:Platform=x86 /v:minimal /nologo && ^
|
||||
msbuild pugixml_vs2015.vcxproj /t:Rebuild /p:Configuration=Release /p:Platform=x86 /v:minimal /nologo && ^
|
||||
msbuild pugixml_vs2015.vcxproj /t:Rebuild /p:Configuration=Debug /p:Platform=x64 /v:minimal /nologo && ^
|
||||
|
|
Loading…
Add table
Reference in a new issue