aboutsummaryrefslogtreecommitdiff
path: root/ports/boost-build/Jamroot.jam
diff options
context:
space:
mode:
authorAlbert Ziegenhagel <albert.ziegenhagel@outlook.com>2018-02-17 12:54:43 +0100
committerRobert Schumacher <roschuma@microsoft.com>2018-02-17 03:54:43 -0800
commit14ef8e2fd2b99fc591bd1f29300c64d9fc14d84d (patch)
treec3282e47bf1133e8281b488d33b78adb4301cd0b /ports/boost-build/Jamroot.jam
parent463775e913b06a11bb5c2acbd597790e834def93 (diff)
downloadvcpkg-14ef8e2fd2b99fc591bd1f29300c64d9fc14d84d.tar.gz
vcpkg-14ef8e2fd2b99fc591bd1f29300c64d9fc14d84d.zip
Fix building boost.mpi (#2684)
* Fix building boost.mpi * [boost-*] Remove boost-mpi dependencies to avoid direct dependency on msmpi. * [boost-build] Bump version with mpi changes
Diffstat (limited to 'ports/boost-build/Jamroot.jam')
-rw-r--r--ports/boost-build/Jamroot.jam9
1 files changed, 9 insertions, 0 deletions
diff --git a/ports/boost-build/Jamroot.jam b/ports/boost-build/Jamroot.jam
index 84f82126d..6669b446e 100644
--- a/ports/boost-build/Jamroot.jam
+++ b/ports/boost-build/Jamroot.jam
@@ -125,6 +125,15 @@ if "@PORT@" != "boost-test"
explicit boost_unit_test_framework ;
}
+if "@PORT@" != "boost-serialization"
+{
+ use-project /boost/serialization : . ;
+
+ lib boost_serialization : : <file>@CURRENT_INSTALLED_DIR@/lib/boost_serialization-vc140-mt.lib <variant>release ;
+ lib boost_serialization : : <file>@CURRENT_INSTALLED_DIR@/debug/lib/boost_serialization-vc140-mt-gd.lib <variant>debug ;
+ explicit boost_serialization ;
+}
+
rule requires ( foo * )
{
}