]> git.tdb.fi Git - builder.git/blob - builderrc
Move architecture information from Builder to class Architecture
[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 "xlib"
39 {
40         build_info
41         {
42                 library "X11";
43         };
44 };
45
46 architecture "arm"
47 {
48         prefix "arm-linux-gnu";
49 };
50
51 architecture "win32"
52 {
53         prefix "i586-mingw32msvc";
54 };
55
56 profile "debug"
57 {
58         option "debug" "1";
59         option "outdir" "$profile";
60 };
61
62 profile "release"
63 {
64         option "optimize" "3";
65         option "strip" "1";
66         option "outdir" "$profile";
67 };
68
69 profile "win32"
70 {
71         option "arch" "win32";
72         option "prefix" "$HOME/local/$arch";
73         option "outdir" "$profile";
74 };
75
76 profile "arm"
77 {
78         option "arch" "arm";
79         option "prefix" "$HOME/local/$arch";
80         option "outdir" "$profile";
81 };