]> git.tdb.fi Git - libs/core.git/blobdiff - Build
Move files around to prepare for assimilation into core
[libs/core.git] / Build
diff --git a/Build b/Build
index 84fd406d077c9acb15e0c6f11d048e6ead7101c0..06545dc50a21490049519164b0f194ce3edb1c74 100644 (file)
--- a/Build
+++ b/Build
@@ -2,16 +2,28 @@
 
 package "mspstrings"
 {
-       description "Mikkosoft Productions string utilities library";
-       version "0.1";
+       version "1.1";
+       description "String utilities library";
 
        require "mspcore";
 
+       headers "msp/strings"
+       {
+               source "source/strings";
+               install true;
+       };
+
+       headers "msp/stringcodec"
+       {
+               source "source/stringcodec";
+               install true;
+       };
+
        library "mspstrings"
        {
-               source "source";
+               source "source/strings";
+               source "source/stringcodec";
                install true;
-               install_headers "msp/strings";
        };
 
        program "grep"
@@ -19,8 +31,6 @@ package "mspstrings"
                source "grep.cpp";
                build_info
                {
-                       incpath "source";
-                       libpath ".";
                        library "mspstrings";
                };
        };
@@ -30,9 +40,13 @@ package "mspstrings"
                source "transcode.cpp";
                build_info
                {
-                       incpath "source";
-                       libpath ".";
                        library "mspstrings";
                };
        };
+
+       tarball "@src"
+       {
+               source "License.txt";
+               source "source/stringcodec/jisx0208.table";
+       };
 };