X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=aea04a16e0a12b39f8e30d3b945cfffa058d14c6;hp=3c44f713ac9697541c2f7db09b121f16eb3512f4;hb=e9606fcfd202207a029fff31f03b8e1a7a0d2963;hpb=58384e355b4a78730d69243f1092e47591f2f384 diff --git a/Build b/Build index 3c44f71..aea04a1 100644 --- a/Build +++ b/Build @@ -1,11 +1,94 @@ -package "mspstrings" +package "mspcore" { - require "mspmisc"; + version "2.0"; + description "Mikkosoft Productions core library"; - library "mspstrings" + require "sigc++-2.0"; + build_info { - source "source"; + threads true; + }; + if_arch "linux" + { + build_info + { + library "dl"; + }; + }; + + 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 "!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"; }; };