X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=1321bb2760ca7c40c063e4f42caa9784b24da3a2;hp=318f3414df20eae3cecb296bce4be288fb5e2b19;hb=5c67ff04d21b2d85f6156eed3b1f05120d24a757;hpb=628d762fbfd512aedde6f313f66594291dad4eb1 diff --git a/Build b/Build index 318f341..1321bb2 100644 --- a/Build +++ b/Build @@ -1,67 +1,47 @@ package "mspcore" { - version "1.1"; + version "3.0"; description "Mikkosoft Productions core library"; require "sigc++-2.0"; - if "arch!=win32" + build_info { - build_info - { - library "pthread"; - }; + threads true; }; - if "arch=linux" + if_arch "linux" { build_info { library "dl"; }; }; - - feature "exception_backtrace" "Generate a backtrace when an exception is thrown."; - - headers "msp/core" + if_arch "android" { - source "source/core"; - install true; - }; - - headers "msp/time" - { - source "source/time"; - install true; + build_info + { + library "android"; + library "log"; + }; }; - headers "msp/debug" + if_arch "darwin" { - source "source/debug"; - install true; + build_info + { + library "Foundation.framework"; + }; }; - headers "msp/strings" + feature "zlib" "Support compression with zlib" { - source "source/strings"; - install true; + default "yes"; }; - - headers "msp/stringcodec" + if_feature "zlib" { - source "source/stringcodec"; - install true; + require "zlib"; }; - headers "msp/io" - { - source "source/io"; - install true; - }; - - headers "msp/fs" - { - source "source/fs"; - install true; - }; + feature "exception_trace" "Support exception backtraces"; library "mspcore" { @@ -72,28 +52,68 @@ package "mspcore" source "source/stringcodec"; source "source/io"; source "source/fs"; + if_arch "windows" + { + overlay "windows"; + }; + if_arch "darwin" + { + overlay "osx"; + }; + if_arch "android" + { + overlay "android"; + build_info + { + keep_symbol "ANativeActivity_onCreate"; + }; + }; + if_arch "!windows" + { + overlay "unix"; + }; + overlay "generic"; install true; + install_map + { + map "source" "include/msp"; + }; }; program "grep" { source "examples/grep.cpp"; - build_info - { - library "mspcore"; - }; + use "mspcore"; }; program "transcode" { source "examples/transcode.cpp"; - build_info + use "mspcore"; + }; + + program "ls" + { + source "examples/ls.cpp"; + use "mspcore"; + }; + + program "syncdir" + { + source "examples/syncdir.cpp"; + use "mspcore"; + }; + + if_feature "zlib" + { + program "z" { - library "mspcore"; + source "examples/z.cpp"; + use "mspcore"; }; }; - tarball "@src" + source_tarball { source "License.txt"; source "source/stringcodec/jisx0208.table";