]> git.tdb.fi Git - libs/core.git/blobdiff - Build
Move OS X main function to an overlay
[libs/core.git] / Build
diff --git a/Build b/Build
index 4542ae5f33a241edcd40ec36ca459208480d789b..aea04a16e0a12b39f8e30d3b945cfffa058d14c6 100644 (file)
--- a/Build
+++ b/Build
@@ -1,45 +1,94 @@
-/* $Id$ */
-
 package "mspcore"
 {
-       version "0.1";
+       version "2.0";
        description "Mikkosoft Productions core library";
 
        require "sigc++-2.0";
-       if "arch!=win32"
+       build_info
+       {
+               threads true;
+       };
+       if_arch "linux"
        {
                build_info
                {
-                       library "pthread";
                        library "dl";
                };
        };
 
-       feature "exception_backtrace" "Generate a backtrace when an exception is thrown.";
+       feature "zlib" "Support compression with zlib"
+       {
+               default "yes";
+       };
+       if_feature "zlib"
+       {
+               require "zlib";
+       };
 
-       headers "core"
+       library "mspcore"
        {
                source "source/core";
-               install_headers "msp/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_map
+               {
+                       map "source" "include/msp";
+               };
        };
 
-       headers "time"
+       program "grep"
        {
-               source "source/time";
-               install_headers "msp/time";
+               source "examples/grep.cpp";
+               use "mspcore";
        };
 
-       headers "debug"
+       program "transcode"
        {
-               source "source/debug";
-               install_headers "msp/debug";
+               source "examples/transcode.cpp";
+               use "mspcore";
        };
 
-       library "mspcore"
+       program "ls"
        {
-               source "source/core";
-               source "source/debug";
-               source "source/time";
-               install true;
+               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";
        };
 };