X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=810880346774ca546a57a848b1be3c19aeeafa1a;hp=a4758f420dd20e11cb253648648911079ee5acba;hb=31cc8f0c6e874e2417e76eda50af34fd17bcd90c;hpb=d16185720fa344263367dbd50c61bfc8183d99a4 diff --git a/Build b/Build index a4758f4..8108803 100644 --- a/Build +++ b/Build @@ -1,69 +1,48 @@ -/* $Id$ */ - 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; + standard CXX "c++11"; }; - 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; - }; - - headers "msp/debug" - { - source "source/debug"; - install true; + build_info + { + library "android"; + library "log"; + }; }; - headers "msp/strings" + if_arch "darwin" { - source "source/strings"; - install true; + build_info + { + library "Foundation.framework"; + }; }; - headers "msp/stringcodec" + feature "zlib" "Support compression with zlib" { - source "source/stringcodec"; - install true; + default "yes"; }; - - headers "msp/io" + if_feature "zlib" { - source "source/io"; - install true; + require "zlib"; }; - headers "msp/fs" - { - source "source/fs"; - install true; - }; + feature "exception_trace" "Support exception backtraces"; library "mspcore" { @@ -74,28 +53,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 "grep.cpp"; - build_info - { - library "mspcore"; - }; + source "examples/grep.cpp"; + use "mspcore"; }; program "transcode" { - source "transcode.cpp"; - build_info + source "examples/transcode.cpp"; + 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";