-
Notifications
You must be signed in to change notification settings - Fork 15
/
dub.json
34 lines (34 loc) · 883 Bytes
/
dub.json
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
{
"name": "allegro",
"description": "D binding to the Allegro5 game development library",
"authors": ["SiegeLord"],
"homepage": "https://github.com/SiegeLord/DAllegro5",
"license": "Zlib",
"targetType": "library",
"sourcePaths": ["allegro5"],
"importPaths": ["."],
"targetName": "dallegro5",
"configurations": [
{
"name": "no-libs"
},
{
"name": "allegro-only",
"libs": ["allegro"]
},
{
"name": "all-addons",
"libs": [
"allegro",
"allegro_acodec",
"allegro_audio",
"allegro_font",
"allegro_ttf",
"allegro_image",
"allegro_color",
"allegro_primitives",
"allegro_video"
]
}
]
}