diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-10-10 10:55:22 -0700 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-10-10 10:55:22 -0700 |
commit | c356bb071fbd54185d54f7069f5862a92a0d6d69 (patch) | |
tree | fa1c9d5a8c57aeaa5af46b7df22245bd1ca685a5 /scripts/nuget.autopkg | |
parent | 3e9cf53ea7c8dfa1d4d4f1e525dfea16120e3362 (diff) | |
parent | ea190c8bd2695f6b1df7335b1d48fa10edd717fc (diff) |
Merge branch 'master' of https://github.com/igagis/pugixml into nuget
Diffstat (limited to 'scripts/nuget.autopkg')
-rw-r--r-- | scripts/nuget.autopkg | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/scripts/nuget.autopkg b/scripts/nuget.autopkg new file mode 100644 index 0000000..c620b57 --- /dev/null +++ b/scripts/nuget.autopkg @@ -0,0 +1,50 @@ +nuget{ + nuspec{ + id = pugixml; + version : 1.6.0.1; + title: XML parser library in C++; + authors: {Arseny Kapoulkine}; + owners: {Arseny Kapoulkine}; + licenseUrl: "http://pugixml.org/license.html"; + projectUrl: "http://pugixml.org/"; + iconUrl: "https://github.com/zeux/pugixml/logo.svg"; + requireLicenseAcceptance:false; + summary: XML parser library in C++; + + description: @"XML parser library in C++"; + releaseNotes: "Initial release"; + copyright: Copyright (c) 2006-2015 Arseny Kapoulkine; + tags: { native}; + } + dependencies { + packages : { + }; + } + files { + include: { "..\src\**\*.hpp" }; + + [x86,release] { + lib: vs2015\Release\libpugixml.lib; +// symbols: vs2015\Release\libpugixml.pdb; +// bin: vs2015\Release\libpugixml.dll; + } + + [x86,debug] { + lib: vs2015\Debug\libpugixml.lib; +// symbols: vs2015\Debug\libpugixml.pdb; +// bin: vs2015\Debug\libpugixml.dll; + } + + [x64,release] { + lib: vs2015\x64\Release\libpugixml.lib; +// symbols: vs2015\x64\Release\libpugixml.pdb; +// bin: vs2015\x64\Release\libpugixml.dll; + } + + [x64,debug] { + lib: vs2015\x64\Debug\libpugixml.lib; +// symbols: vs2015\x64\Debug\libpugixml.pdb; +// bin: vs2015\x64\Debug\libpugixml.dll; + } + } +} |