]> git.tdb.fi Git - libs/core.git/commitdiff
Make the programs use the library and headers from installed locations to work correc...
authorMikko Rasa <tdb@tdb.fi>
Sun, 10 Aug 2008 16:12:59 +0000 (16:12 +0000)
committerMikko Rasa <tdb@tdb.fi>
Sun, 10 Aug 2008 16:12:59 +0000 (16:12 +0000)
Bump version number for release

Build
grep.cpp
transcode.cpp

diff --git a/Build b/Build
index 84fd406d077c9acb15e0c6f11d048e6ead7101c0..cb81c573c78fe8e7c878225c5ae8eab000cde9af 100644 (file)
--- a/Build
+++ b/Build
@@ -2,8 +2,8 @@
 
 package "mspstrings"
 {
-       description "Mikkosoft Productions string utilities library";
-       version "0.1";
+       version "1.0";
+       description "String utilities library";
 
        require "mspcore";
 
@@ -19,8 +19,6 @@ package "mspstrings"
                source "grep.cpp";
                build_info
                {
-                       incpath "source";
-                       libpath ".";
                        library "mspstrings";
                };
        };
@@ -30,8 +28,6 @@ package "mspstrings"
                source "transcode.cpp";
                build_info
                {
-                       incpath "source";
-                       libpath ".";
                        library "mspstrings";
                };
        };
index 07743072be997253e83356cd5704ea414be7c282..0a3cd8d236bb7ebd8c96c7953fc5ad6d2ebff339 100644 (file)
--- a/grep.cpp
+++ b/grep.cpp
@@ -2,7 +2,7 @@
 #include <iostream>
 #include <string>
 #include <msp/core/getopt.h>
-#include "regex.h"
+#include <msp/strings/regex.h>
 
 using namespace std;
 using namespace Msp;
index 675f3681ee4e5696208e831fadab9b81289c6009..12b93ec59520863c9c41c6411403b507f8fecfbd 100644 (file)
@@ -1,7 +1,7 @@
 /* $Id$ */
 #include <iostream>
 #include <string>
-#include "codec.h"
+#include <msp/strings/codec.h>
 
 using namespace std;
 using namespace Msp;