]> git.tdb.fi Git - libs/core.git/blob - Build
core/error.h renamed to except.h
[libs/core.git] / Build
1 // $Id$
2
3 package "mspstrings"
4 {
5         description "Mikkosoft Productions string utilities library";
6         version "0.1";
7
8         require "mspcore";
9
10         library "mspstrings"
11         {
12                 source "source";
13                 install true;
14                 install_headers "msp/strings";
15         };
16
17         program "grep"
18         {
19                 source "grep.cpp";
20                 build_info
21                 {
22                         incpath "source";
23                         libpath ".";
24                         library "mspstrings";
25                 };
26         };
27
28         program "transcode"
29         {
30                 source "transcode.cpp";
31                 build_info
32                 {
33                         incpath "source";
34                         libpath ".";
35                         library "mspstrings";
36                 };
37         };
38 };