diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2016-08-08 08:24:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-08 08:24:20 -0700 |
commit | dfe9360cdf038c0ecf53d45bfc75cf8fd34604b8 (patch) | |
tree | f8c41670d11e5a06e9adacbc3655cb3336faeac8 /scripts | |
parent | 4451ab0b226287cb54207b1904b8f328ff9b1184 (diff) | |
parent | 24ba24a4654adeffe5abd597b75f478a1b30dc55 (diff) |
Merge pull request #109 from steji113/master
Remove static pivot from NuGet autopkg.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/nuget.autopkg | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/nuget.autopkg b/scripts/nuget.autopkg index 687ea03..1a3fc22 100644 --- a/scripts/nuget.autopkg +++ b/scripts/nuget.autopkg @@ -30,13 +30,13 @@ nuget { files { include: { "..\src\*.hpp" }; - [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; } + [x86,v120,release] { lib: vs2013\x32\pugixmls.lib; } + [x86,v120,debug] { lib: vs2013\x32\pugixmlsd.lib; } + [x64,v120,release] { lib: vs2013\x64\pugixmls.lib; } + [x64,v120,debug] { lib: vs2013\x64\pugixmlsd.lib; } + [x86,v140,release] { lib: vs2015\Win32_Release\pugixml.lib; } + [x86,v140,debug] { lib: vs2015\Win32_Debug\pugixml.lib; } + [x64,v140,release] { lib: vs2015\x64_Release\pugixml.lib; } + [x64,v140,debug] { lib: vs2015\x64_Debug\pugixml.lib; } } } |