]> git.tdb.fi Git - libs/core.git/blobdiff - Build
Don't give out a non-const reference from a const Variant
[libs/core.git] / Build
diff --git a/Build b/Build
index b0e5881e9e96cae6f0b472ca51a43a8c071c320e..51b3bc8276ea7f69e72fb8565797eea2811ba047 100644 (file)
--- a/Build
+++ b/Build
-/* $Id$ */
-
-package "mspfs"
+package "mspcore"
 {
-       version "1.1";
-       description "Filesystem utilities";
+       version "2.0";
+       description "Mikkosoft Productions core library";
 
-       require "mspstrings";
+       require "sigc++-2.0";
+       if_arch "!windows"
+       {
+               build_info
+               {
+                       library "pthread";
+               };
+       };
+       if_arch "linux"
+       {
+               build_info
+               {
+                       library "dl";
+               };
+       };
 
-       headers "msp/fs"
+       feature "zlib" "Support compression with zlib"
        {
-               source "source";
-               install true;
+               default "yes";
+       };
+       if_feature "zlib"
+       {
+               require "zlib";
        };
 
-       library "mspfs"
+       library "mspcore"
        {
-               source "source";
+               source "source/core";
+               source "source/debug";
+               source "source/time";
+               source "source/strings";
+               source "source/stringcodec";
+               source "source/io";
+               source "source/fs";
                install true;
+               install_map
+               {
+                       map "source" "include/msp";
+               };
+       };
+
+       program "grep"
+       {
+               source "examples/grep.cpp";
+               build_info
+               {
+                       library "mspcore";
+               };
+       };
+
+       program "transcode"
+       {
+               source "examples/transcode.cpp";
+               build_info
+               {
+                       library "mspcore";
+               };
+       };
+
+       program "ls"
+       {
+               source "examples/ls.cpp";
+               build_info
+               {
+                       library "mspcore";
+               };
+       };
+
+       program "syncdir"
+       {
+               source "examples/syncdir.cpp";
+               build_info
+               {
+                       library "mspcore";
+               };
+       };
+
+       if_feature "zlib"
+       {
+               program "z"
+               {
+                       source "examples/z.cpp";
+                       build_info
+                       {
+                               library "mspcore";
+                       };
+               };
        };
 
-       tarball "@src"
+       source_tarball
        {
-               source "Changelog.txt";
                source "License.txt";
+               source "source/stringcodec/jisx0208.table";
        };
 };