]> git.tdb.fi Git - libs/core.git/blobdiff - Build
Add some useful shortcuts for CreateMode combinations
[libs/core.git] / Build
diff --git a/Build b/Build
index 84fd406d077c9acb15e0c6f11d048e6ead7101c0..51b3bc8276ea7f69e72fb8565797eea2811ba047 100644 (file)
--- a/Build
+++ b/Build
-// $Id$
-
-package "mspstrings"
+package "mspcore"
 {
-       description "Mikkosoft Productions string utilities library";
-       version "0.1";
+       version "2.0";
+       description "Mikkosoft Productions core library";
 
-       require "mspcore";
+       require "sigc++-2.0";
+       if_arch "!windows"
+       {
+               build_info
+               {
+                       library "pthread";
+               };
+       };
+       if_arch "linux"
+       {
+               build_info
+               {
+                       library "dl";
+               };
+       };
 
-       library "mspstrings"
+       feature "zlib" "Support compression with zlib"
+       {
+               default "yes";
+       };
+       if_feature "zlib"
        {
-               source "source";
+               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";
                install true;
-               install_headers "msp/strings";
+               install_map
+               {
+                       map "source" "include/msp";
+               };
        };
 
        program "grep"
        {
-               source "grep.cpp";
+               source "examples/grep.cpp";
                build_info
                {
-                       incpath "source";
-                       libpath ".";
-                       library "mspstrings";
+                       library "mspcore";
                };
        };
 
        program "transcode"
        {
-               source "transcode.cpp";
+               source "examples/transcode.cpp";
+               build_info
+               {
+                       library "mspcore";
+               };
+       };
+
+       program "ls"
+       {
+               source "examples/ls.cpp";
                build_info
                {
-                       incpath "source";
-                       libpath ".";
-                       library "mspstrings";
+                       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";
+                       };
+               };
+       };
+
+       source_tarball
+       {
+               source "License.txt";
+               source "source/stringcodec/jisx0208.table";
+       };
 };