X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=d940f4a695ce976c886be6341c08d85ed9a5bade;hp=688fe615fe70b98e709894345dcd837b265472d7;hb=497eaf090b1665511c795d5764c06a2bcd4b90b6;hpb=f3afcce30a6213fedba4330a5c0b1edc5b528b70 diff --git a/Build b/Build index 688fe61..d940f4a 100644 --- a/Build +++ b/Build @@ -1,24 +1,111 @@ -// $Id$ - -package "mspstrings" +package "mspcore" { - require "mspcore"; + version "2.0"; + description "Mikkosoft Productions core library"; - library "mspstrings" + require "sigc++-2.0"; + build_info + { + threads true; + }; + if_arch "linux" + { + build_info + { + library "dl"; + }; + }; + if_arch "android" { - source "source"; + build_info + { + library "android"; + library "log"; + }; + }; + + feature "zlib" "Support compression with zlib" + { + 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"; + }; + overlay "generic"; install true; - install_headers "msp/strings"; + install_map + { + map "source" "include/msp"; + }; }; program "grep" { - source "grep.cpp"; - build_info + 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" { - incpath "source"; - libpath "."; - library "mspstrings"; + source "examples/z.cpp"; + use "mspcore"; }; }; + + source_tarball + { + source "License.txt"; + source "source/stringcodec/jisx0208.table"; + }; };