]> git.tdb.fi Git - builder.git/blobdiff - Build
If a binary package is not found, briefly describe what was missing
[builder.git] / Build
diff --git a/Build b/Build
index 28ab0e2d40263be12a2f3a4719006010535a6f2a..9f94ecbdea9593353fd48273e1420998518de13d 100644 (file)
--- a/Build
+++ b/Build
@@ -13,9 +13,9 @@ package "builder"
                standard CXX "c++11";
        };
 
-       program "builder"
+       library "libbuilder"
        {
-               source "source";
+               source "source/lib";
                if_arch "windows"
                {
                        build_info
@@ -25,6 +25,53 @@ package "builder"
                        };
                };
                install true;
+               install_map
+               {
+                       map "source/lib" "include/msp/builder";
+               };
+       };
+
+       program "builder"
+       {
+               source "source/cli";
+               use "libbuilder";
+               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";
+               install true;
+       };
+
+       module "clangtools"
+       {
+               source "plugins/clang";
+               install true;
+       };
+
+       module "msvctools"
+       {
+               source "plugins/msvc";
+               install true;
        };
 
        source_archive