From: Mikko Rasa Date: Wed, 28 Dec 2022 11:40:35 +0000 (+0200) Subject: Rename the library component as libbuilder X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=412d452138526d55d6b96b36f685c0e1d4e22edb;p=builder.git Rename the library component as libbuilder Using the same name for the program and the library components causes some trouble especially with MSVC, since the pdb and ilk files overlap. --- diff --git a/Build b/Build index 74490dd..6f93cb0 100644 --- a/Build +++ b/Build @@ -49,7 +49,7 @@ package "builder" default false; }; - library "builder" + library "libbuilder" { source "source/lib"; use "builtintools"; @@ -80,7 +80,7 @@ package "builder" program "builder" { source "source/cli"; - use "builder"; + use "libbuilder"; install true; };