]> git.tdb.fi Git - libs/core.git/blob - Build
Make the programs use the library and headers from installed locations to work correc...
[libs/core.git] / Build
1 // $Id$
2
3 package "mspstrings"
4 {
5         version "1.0";
6         description "String utilities library";
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                         library "mspstrings";
23                 };
24         };
25
26         program "transcode"
27         {
28                 source "transcode.cpp";
29                 build_info
30                 {
31                         library "mspstrings";
32                 };
33         };
34 };