X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=Build;h=37238596691a28ae4efd05d9c1c4ef6cd08f0b7e;hb=418d0b18998fbd982bed87b05ff1247b4dd758dd;hp=ea1331158493a52c9c637c296d6199d5ebadc157;hpb=32d6218afe58969f2b18dfa6e262bb9509829abe;p=builder.git diff --git a/Build b/Build index ea13311..3723859 100644 --- a/Build +++ b/Build @@ -1,6 +1,6 @@ package "builder" { - version "2.0"; + version "3.0"; description "Mikkosoft Productions software builder"; require "mspcore"; @@ -13,18 +13,66 @@ package "builder" standard CXX "c++11"; }; - program "builder" + library "libbuilder" { - source "source"; + source "source/lib"; if_arch "windows" { build_info { library "ole32"; library "advapi32"; + library "shell32"; }; }; 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