]> git.tdb.fi Git - builder.git/blobdiff - Build
Add shell32 to libraries on Windows
[builder.git] / Build
diff --git a/Build b/Build
index 794c3f30167577f157c399bc127d6ad86d74116b..37238596691a28ae4efd05d9c1c4ef6cd08f0b7e 100644 (file)
--- a/Build
+++ b/Build
@@ -13,40 +13,16 @@ package "builder"
                standard CXX "c++11";
        };
 
-       library "builtintools"
-       {
-               source "plugins/builtin";
-               default false;
-       };
-
-       library "androidtools"
-       {
-               source "plugins/android";
-               default false;
-       };
-
-       library "datatools"
-       {
-               source "plugins/datafile";
-               default false;
-       };
-
        library "libbuilder"
        {
                source "source/lib";
-               use "builtintools";
-               use "androidtools";
-               use "datatools";
-               build_info
-               {
-                       incpath "plugins";
-               };
                if_arch "windows"
                {
                        build_info
                        {
                                library "ole32";
                                library "advapi32";
+                               library "shell32";
                        };
                };
                install true;
@@ -63,6 +39,24 @@ package "builder"
                install true;
        };
 
+       module "androidtools"
+       {
+               source "plugins/android";
+               install true;
+       };
+
+       module "basetools"
+       {
+               source "plugins/base";
+               install true;
+       };
+
+       module "datatools"
+       {
+               source "plugins/datafile";
+               install true;
+       };
+
        module "gnutools"
        {
                source "plugins/gnu";