From: Mikko Rasa Date: Sun, 10 Aug 2008 16:12:59 +0000 (+0000) Subject: Make the programs use the library and headers from installed locations to work correc... X-Git-Tag: strings-1.0~2 X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=commitdiff_plain;h=1493ea58d7f0bbf38a92cc166e9d07be3acebbc9;hp=5c8c0d5e52bbba8dc3f9c7c71b6e4c973216c600 Make the programs use the library and headers from installed locations to work correctly with different profiles Bump version number for release --- diff --git a/Build b/Build index 84fd406..cb81c57 100644 --- 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"; }; }; diff --git a/grep.cpp b/grep.cpp index 0774307..0a3cd8d 100644 --- a/grep.cpp +++ b/grep.cpp @@ -2,7 +2,7 @@ #include #include #include -#include "regex.h" +#include using namespace std; using namespace Msp; diff --git a/transcode.cpp b/transcode.cpp index 675f368..12b93ec 100644 --- a/transcode.cpp +++ b/transcode.cpp @@ -1,7 +1,7 @@ /* $Id$ */ #include #include -#include "codec.h" +#include using namespace std; using namespace Msp;