]> git.tdb.fi Git - builder.git/blob - builderrc
Adapt to changes in msppath
[builder.git] / builderrc
1 /* $Id$ */
2
3 binary_package "opengl"
4 {
5         build_info
6         {
7                 library "GL";
8         };
9 };
10
11 binary_package "pthread"
12 {
13         build_info
14         {
15                 library "pthread";
16         };
17 };
18
19 binary_package "gmpxx"
20 {
21         build_info
22         {
23                 library "gmpxx";
24         };
25 };
26
27 binary_package "fmod4"
28 {
29         build_info
30         {
31                 incpath "@/api/inc";
32                 libpath "@/api/lib";
33                 library "fmodex";
34         };
35         need_path true;
36 };
37
38 binary_package "ode"
39 {
40         build_info
41         {
42                 library "ode";
43         };
44 };
45
46 binary_package "xlib"
47 {
48         build_info
49         {
50                 library "X11";
51         };
52 };
53
54 architecture "arm"
55 {
56         prefix "arm-linux-gnu";
57 };
58
59 architecture "win32"
60 {
61         prefix "i586-mingw32msvc";
62 };
63
64 profile "debug"
65 {
66         option "debug" "1";
67         option "outdir" "$profile";
68 };
69
70 profile "release"
71 {
72         option "optimize" "3";
73         option "strip" "1";
74         option "outdir" "$profile";
75 };
76
77 profile "win32"
78 {
79         option "arch" "win32";
80         option "prefix" "$HOME/local/$arch";
81         option "outdir" "$profile";
82 };
83
84 profile "arm"
85 {
86         option "arch" "arm";
87         option "prefix" "$HOME/local/$arch";
88         option "outdir" "$profile";
89 };