]> git.tdb.fi Git - libs/game.git/blob - Build
Add a controllable player ship to Bassteroids
[libs/game.git] / Build
1 package "mspgame"
2 {
3         version "0.1";
4
5         require "mspcore";
6         require "mspdatafile";
7         require "mspmath";
8         require "mspgui";
9         require "mspgl";
10         require "sigc++-2.0";
11
12         build_info
13         {
14                 standard CXX "c++20";
15         };
16
17         library "mspgame"
18         {
19                 source "source/game";
20                 install true;
21                 install_map
22                 {
23                         map "source" "include/msp";
24                 };
25         };
26
27         library "mspgameview"
28         {
29                 source "source/gameview";
30                 use "mspgame";
31                 install true;
32                 install_map
33                 {
34                         map "source" "include/msp";
35                 };
36         };
37 };