-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdub.json
More file actions
37 lines (37 loc) · 854 Bytes
/
dub.json
File metadata and controls
37 lines (37 loc) · 854 Bytes
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
{
"name": "genetic_algorithm",
"authors": [
"Aleš Lerch",
"Martin Hnátek"
],
"lflags" : ["-LDSFMLC/lib"],
"dependencies": {
"dsfml:graphics": "~>2.1",
"dlib": "~>0.11.1"
},
"configurations": [
{
"name": "genetic",
"targetType": "executable",
"excludedSourceFiles": ["source/benchmark.d"],
"targetName": "genetic",
"mainSourceFile": "source/app.d"
},
{
"name": "benchmark",
"targetType": "executable",
"excludedSourceFiles": ["source/app.d"],
"targetName": "benchmark",
"dependencies": {
"ggplotd": ">=0.4.5"
},
"subConfigurations": {
"ggplotd": "ggplotd-gtk"
},
"buildRequirements": ["disallowOptimization"],
"mainSourceFile": "source/benchmark.d"
}
],
"description": "Genetic algorithm library with application that tests it (school project)",
"license": "MIT"
}