X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=Build;h=9f94ecbdea9593353fd48273e1420998518de13d;hb=6280e72c03ae898efc76fa20706111f22c13b8a2;hp=279e64cf0c2855f1a2b5bf747e14a8041fc51d8b;hpb=7aeaa4ba965f596edad438c02e345a8843f7469a;p=builder.git diff --git a/Build b/Build index 279e64c..9f94ecb 100644 --- a/Build +++ b/Build @@ -1,19 +1,93 @@ -/* $Id$ */ - package "builder" { - version "0.1"; + version "3.0"; description "Mikkosoft Productions software builder"; require "mspcore"; - require "mspstrings"; - require "mspparser"; - require "msppath"; + 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"; + }; + }; + 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"; + }; };