X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=Build;h=37238596691a28ae4efd05d9c1c4ef6cd08f0b7e;hb=418d0b18998fbd982bed87b05ff1247b4dd758dd;hp=16e9982c9117b7898d3b37947b68b727234cd0e2;hpb=59ac0a44d6edf179c01604c6ced744873213f855;p=builder.git diff --git a/Build b/Build index 16e9982..3723859 100644 --- a/Build +++ b/Build @@ -1,17 +1,94 @@ package "builder" { - version "0.1"; + version "3.0"; description "Mikkosoft Productions software builder"; require "mspcore"; - require "mspparser"; - require "msppath"; - require "mspregex++"; + require "mspdatafile"; + require "mspcrypto"; require "sigc++-2.0"; + build_info + { + standard CXX "c++11"; + }; + + library "libbuilder" + { + 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"; + 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 + { + source "bootstrap.sh"; + source "Readme.txt"; + source "License.txt"; + }; + + install "share/builder" + { + source "builderrc"; + }; + + install "share/builder/packages" + { + source "packages"; + }; };