-
Notifications
You must be signed in to change notification settings - Fork 14
/
dub.json
27 lines (27 loc) · 928 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
{
"name": "raylib-d",
"description": "D binding for Raylib",
"license": "Zlib",
"authors": [
"ONROUNDIT"
],
"configurations" : [
{
"name": "library"
},
{
"name": "unittest",
"versions" : ["raylib_test"],
"libs" : ["raylib"],
"lflags-posix": ["-L."],
"lflags-osx": ["-rpath", "@executable_path/"],
"lflags-linux" : ["-rpath=$$ORIGIN"]
}
],
"copyright": "Copyright (c) Ramon Santamaria (@raysan5), Petro Romanovych (@onroundit), Jan Hoenig (@m3m0ry), Steven Schveighoffer (@schveiguy), Liam McGillivray (@LiamM32)",
"excludedSourceFiles": ["source/rlgl.d", "source/raymath.d", "source/easings.d", "source/raymathext.d", "source/raylib_types.d"],
"targetType": "sourceLibrary",
"subPackages" : [
"install"
]
}