]> git.tdb.fi Git - builder.git/commitdiff
Adjust plugin dependencies
authorMikko Rasa <tdb@tdb.fi>
Tue, 3 Jan 2023 11:01:09 +0000 (13:01 +0200)
committerMikko Rasa <tdb@tdb.fi>
Tue, 3 Jan 2023 11:01:09 +0000 (13:01 +0200)
Mspcrypto dependency has been moved to msvctools, since the base program
doesn't need it.

Build

diff --git a/Build b/Build
index 37238596691a28ae4efd05d9c1c4ef6cd08f0b7e..da62feed92c10f1c2093f4a63ac9f340c6e3d29a 100644 (file)
--- a/Build
+++ b/Build
@@ -5,7 +5,6 @@ package "builder"
 
        require "mspcore";
        require "mspdatafile";
-       require "mspcrypto";
        require "sigc++-2.0";
 
        build_info
@@ -42,36 +41,43 @@ package "builder"
        module "androidtools"
        {
                source "plugins/android";
+               use "libbuilder";
                install true;
        };
 
        module "basetools"
        {
                source "plugins/base";
+               use "libbuilder";
                install true;
        };
 
        module "datatools"
        {
                source "plugins/datafile";
+               use "libbuilder";
                install true;
        };
 
        module "gnutools"
        {
                source "plugins/gnu";
+               use "libbuilder";
                install true;
        };
 
        module "clangtools"
        {
                source "plugins/clang";
+               use "libbuilder";
                install true;
        };
 
        module "msvctools"
        {
                source "plugins/msvc";
+               use "libbuilder";
+               require "mspcrypto";
                install true;
        };