Skip to content

Instantly share code, notes, and snippets.

@lighta
Created November 2, 2015 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lighta/7be5e1274ca22b8876bf to your computer and use it in GitHub Desktop.
Save lighta/7be5e1274ca22b8876bf to your computer and use it in GitHub Desktop.
nuget {
nuspec {
id = dwos_boost159;
version : 0.4;
title: boost159;
authors: {Dental Wings, Max Moreau};
licenseUrl: "https://en.wikipedia.org/wiki/Boost_Software_License";
projectUrl: "http://www.boost.org/";
iconUrl: "Z:\mmoreau\lib\logo\boost_logo.png";
requireLicenseAcceptance:false;
summary: "This is boost librarie package for VS2012 dynamic with MD/MDd, vc_110xp, (x86/x64)";
description: "Boost provides free peer-reviewed portable C++ source libraries.";
releaseNotes: "Release of C++ Boost libraries as package.";
copyright: Copyright 2015;
tags: {native, cpp};
}
files {
nestedInclude += {
#destination = ${d_include}\boost;
"..\lib\x86\boost\include\**\*"
};
[x64,v110_xp,debug] {
lib += { ..\lib\x64\boost\debug\boost_*.lib };
bin += { ..\lib\x64\boost\debug\*.dll };
}
[x64,v110_xp,release] {
lib += { ..\lib\x64\boost\release\boost_*.lib };
bin += { ..\lib\x64\boost\release\*.dll };
}
[Win32,v110_xp,debug] {
lib += { ..\lib\x86\boost\debug\boost_*.lib };
bin += { ..\lib\x86\boost\debug\*.dll };
}
[Win32,v110_xp,release] {
lib += { ..\lib\x86\boost\release\boost_*.lib };
bin += { ..\lib\x86\boost\release\*.dll };
}
targets {
Defines += HAS_DYNBOOST, BOOST_ALL_DYN_LINK;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment