]> git.tdb.fi Git - libs/datafile.git/blob - Build
Force correct conversion of symbols
[libs/datafile.git] / Build
1 package "mspdatafile"
2 {
3         version "3.0";
4         description "Structured datafile library";
5
6         require "mspcore";
7         require "sigc++-2.0";
8
9         build_info
10         {
11                 standard CXX "c++11";
12         };
13
14         library "mspdatafile"
15         {
16                 source "source";
17                 install true;
18                 install_map
19                 {
20                         map "source" "include/msp/datafile";
21                 };
22         };
23
24         program "mspdatatool"
25         {
26                 source "tool";
27                 install true;
28                 build_info
29                 {
30                         library "mspdatafile";
31                 };
32         };
33         
34         source_tarball
35         {
36                 source "Readme.txt";
37                 source "License.txt";
38                 source "Changelog.txt";
39         };
40 };