-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdub.json
31 lines (31 loc) · 1.24 KB
/
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
{
"name": "ddmg",
"description": "A Gameboy emulator",
"authors": ["Marcus Stojcevich"],
"license": "MPL-2.0",
"configurations": [
{
"name": "executable",
"targetType": "executable",
"dependencies": {
"derelict-glfw3": { "version": "~3.2", "path": "dependencies/DerelictGLFW3/" },
"derelict-gl3": { "version": "~1.0", "path": "dependencies/DerelictGL3/" },
"derelict-sdl2": { "version": "~2.1", "path": "dependencies/DerelictSDL2/" },
"derelict-util": { "version": "~2.1", "path": "dependencies/DerelictUtil/" }
}
},
{
"name": "unittest",
"targetType": "executable",
"targetPath": "tests",
"versions": ["test", "headless"],
"excludedSourceFiles": ["source/app.d", "source/frontend/sdl/*", "source/frontend/glfw/*"],
"sourcePaths": ["source", "tests"],
"importPaths": ["source", "tests"],
"dependencies": {
"d-unit": { "version": "~master", "path": "dependencies/dunit/" },
"unit-threaded": { "version": "~master", "path": "dependencies/unit-threaded/" }
}
}
]
}