Rev 4 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1 | tom | 1 | Project("SSSNAKESSS") |
2 | Language("C++") |
||
3 | |||
4 | function build() |
||
10 | tom | 5 | Set("Sources", Srcs("main.cpp", "sssnakesss.cpp", "texture.cpp", "point.cpp", "snake.cpp")) |
3 | tom | 6 | Set("Libraries", Libs("SDL", "SDL_image", "SDL_mixer", "SDL_ttf", "GL")) |
1 | tom | 7 | Set("Includes", Incs("SDL", "SDL_image", "SDL_mixer", "SDL_ttf")) |
8 | |||
9 | Compile() |
||
10 | Link("sssnakesss") |
||
11 | end |
||
12 |