]> git.tdb.fi Git - builder.git/blob - openal.bpk
Collect libpath for static library dependencies from the libs themselves
[builder.git] / openal.bpk
1 binary_package "openal"
2 {
3         // XXX OpenAL has a .pc file for *nix but not for Windows
4         if_arch "!windows"
5         {
6                 build_info
7                 {
8                         library "openal";
9                 };
10         };
11
12         if_arch "windows"
13         {
14                 build_info
15                 {
16                         library "OpenAL32";
17                 };
18         };
19
20         header "AL/al.h";
21 };