From: Mikko Rasa Date: Wed, 1 Sep 2021 00:41:35 +0000 (+0300) Subject: Add MSVC-specific library name for sigc++ X-Git-Url: http://git.tdb.fi/?p=builder.git;a=commitdiff_plain;h=d5ceaee2d8560307f6fcb65893878594b216e4fa Add MSVC-specific library name for sigc++ This is hardcoded for the debug version now, until I come up with a way to make it conditional on build type. --- diff --git a/packages/sigc++-2.0.bpk b/packages/sigc++-2.0.bpk index 88cd3be..ebcbeb9 100644 --- a/packages/sigc++-2.0.bpk +++ b/packages/sigc++-2.0.bpk @@ -2,10 +2,23 @@ binary_package "sigc++-2.0" { build_info { - library "sigc-2.0"; incpath "include/sigc++-2.0"; standard CXX "c++11"; }; + if_arch "msvc" + { + build_info + { + library "sigc-vc140-d-2_0"; + }; + }; + if_arch "!msvc" + { + build_info + { + library "sigc-2.0"; + }; + }; if_arch "linux-64" { build_info