From 412d452138526d55d6b96b36f685c0e1d4e22edb Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Wed, 28 Dec 2022 13:40:35 +0200 Subject: [PATCH] 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. --- Build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }; -- 2.45.2