]> git.tdb.fi Git - builder.git/commitdiff
Rename the library component as libbuilder
authorMikko Rasa <tdb@tdb.fi>
Wed, 28 Dec 2022 11:40:35 +0000 (13:40 +0200)
committerMikko Rasa <tdb@tdb.fi>
Wed, 28 Dec 2022 14:11:05 +0000 (16:11 +0200)
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

diff --git a/Build b/Build
index 74490dd60d5d643c77129402bcd92124826c613a..6f93cb026ca4dadcb97d8c19ffa3f587a886252b 100644 (file)
--- 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;
        };