]> git.tdb.fi Git - r2c2.git/blob - Build
Convert designer to use mspgltk for UI
[r2c2.git] / Build
1 package "märklin"
2 {
3         require "mspcore";
4         require "sigc++-2.0";
5
6         program "shoppinglist"
7         {
8                 source "source/shoppinglist";
9                 require "mspdatafile";
10         };
11
12         library "marklin"
13         {
14                 source "source/libmarklin";
15                 require "mspdatafile";
16         };
17
18         library "marklin3d"
19         {
20                 source "source/3d";
21                 require "mspgl";
22                 build_info
23                 {
24                         incpath "source";
25                         library "marklin";
26                         libpath ".";
27                 };
28         };
29
30         /*program "newconsole"
31         {
32                 source "source/newconsole";
33                 build_info
34                 {
35                         library "marklincontrol";
36                         incpath "source";
37                         libpath ".";
38                 };
39         };*/
40
41         program "designer"
42         {
43                 source "source/designer";
44                 require "mspstrings";
45                 require "mspgltk";
46                 require "mspgbase";
47                 build_info
48                 {
49                         incpath "source";
50                         library "marklin3d";
51                         libpath ".";
52                 };
53         };
54
55         program "engineer"
56         {
57                 source "source/engineer";
58                 require "mspstrings";
59                 require "mspgltk";
60                 require "mspgbase";
61                 build_info
62                 {
63                         incpath "source";
64                         library "marklin3d";
65                         libpath ".";
66                 };
67         };
68 };