]> git.tdb.fi Git - libs/core.git/blobdiff - Build
Update .gitignore
[libs/core.git] / Build
diff --git a/Build b/Build
index b0e5881e9e96cae6f0b472ca51a43a8c071c320e..2aa78db278ab0674dfd1509fa88f91eebc803b8f 100644 (file)
--- a/Build
+++ b/Build
@@ -1,27 +1,90 @@
-/* $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";
+       build_info
+       {
+               threads true;
+       };
+       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";
+               if_arch "windows"
+               {
+                       overlay "windows";
+               };
+               if_arch "!windows"
+               {
+                       overlay "unix";
+               };
                install true;
+               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";
+               };
        };
 
-       tarball "@src"
+       source_tarball
        {
-               source "Changelog.txt";
                source "License.txt";
+               source "source/stringcodec/jisx0208.table";
        };
 };