X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=fb10fd448ee77676890b733a5553d3c61e5763e3;hp=3ad1eda961bd48fd41a27f35430440cbd1130b62;hb=bda95f684da98079f4b1fe705d969bacb6d86e12;hpb=9da6abdcabec59f4845da256a8ad75a810ed1589 diff --git a/Build b/Build index 3ad1eda..fb10fd4 100644 --- a/Build +++ b/Build @@ -1,13 +1,110 @@ -// $Id$ - -package "mspstrings" +package "mspcore" { - require "mspmisc"; + version "2.0"; + description "Mikkosoft Productions core library"; + + require "sigc++-2.0"; + build_info + { + threads true; + }; + if_arch "linux" + { + build_info + { + library "dl"; + }; + }; + if_arch "android" + { + build_info + { + library "android"; + library "log"; + }; + }; - library "mspstrings" + feature "zlib" "Support compression with zlib" { - source "source"; + default "yes"; + }; + if_feature "zlib" + { + require "zlib"; + }; + + library "mspcore" + { + source "source/core"; + source "source/debug"; + source "source/time"; + source "source/strings"; + 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"; + }; install true; - install_headers "msp/strings"; + install_map + { + map "source" "include/msp"; + }; + }; + + program "grep" + { + source "examples/grep.cpp"; + use "mspcore"; + }; + + program "transcode" + { + 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" + { + source "examples/z.cpp"; + use "mspcore"; + }; + }; + + source_tarball + { + source "License.txt"; + source "source/stringcodec/jisx0208.table"; }; };