-
Notifications
You must be signed in to change notification settings - Fork 1
/
module.modulemap
42 lines (37 loc) · 987 Bytes
/
module.modulemap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
module CSDL2 [system] {
header "shim.h"
//header "/usr/include/SDL2/SDL.h"
// This is needed for SwiftBGFX
//header "/usr/include/SDL2/SDL_syswm.h"
link "SDL2"
export *
// We do not make any of use of these in Fiber2D yet.
/*module gfx {
header "/usr/include/SDL2/SDL2_gfxPrimitives.h"
header "/usr/include/SDL2/SDL2_rotozoom.h"
header "/usr/include/SDL2/SDL2_framerate.h"
header "/usr/include/SDL2/SDL2_imageFilter.h"
link "SDL2_gfx"
export *
}
module image {
header "/usr/include/SDL2/SDL_image.h"
link "SDL2_image"
export *
}
module mixer {
header "/usr/include/SDL2/SDL_image.h"
link "SDL2_mixer"
export *
}
module net {
header "/usr/include/SDL2/SDL_net.h"
link "SDL2_net"
export *
}
module ttf {
header "/usr/include/SDL2/SDL_ttf.h"
link "SDL2_ttf"
export *
}*/
}