-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
119 lines (117 loc) · 2.91 KB
/
package.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "doogle",
"description": "DOOGLE is a cross platform gui toolkit built in D.",
"homepage": "http://github.com/rikkimax/DOOGLE",
"copyright": "Copyright © 2013, Richard Andrew Cattermole",
"authors": [
"Richard Andrew Cattermole"
],
"dependencies": {
"doogle:standardplatformwindow" : "~master",
"doogle:windowmanagement" : "~master",
"doogle:standardcontrols": "~master",
"doogle:util": "~master"
},
"sourcePaths": [
"source/doogle"
],
"buildRequirements": [
"allowWarnings"
],
"targetPath": "bin",
"workingDirectory": "obj",
"subPackages": [
{
"name": "opengl",
"targetType": "library",
"sourcePaths": ["source/OpenGL"],
"libs-posix": ["dl"],
"dependencies": {
"derelict-gl3" : "~master",
"gl3n" : "~master",
"doogle:util": "~master"
}
},
{
"name": "standardplatformwindow",
"targetType": "staticLibrary",
"dependencies": {
"doogle:windowmanagement" : "~master"
},
"dependencies-windows": {
"doogle:opengl" : "~master"
},
"sourcePaths": ["source/StandardPlatformWindow"],
"libs-posix": ["X11", "Xrandr"],
"libs-windows": ["user32", "gdi32"],
"sourcePaths-windows": ["source/WindowsAPI"],
"sourcePaths-posix": ["source/libX11"]
},
{
"name": "windowmanagement",
"targetType": "sourceLibrary",
"sourcePaths": ["source/WindowManagement"],
"dependencies": {
"doogle:util": "~master"
}
},
{
"name": "standardcontrols",
"targetType": "library",
"dependencies": {
"doogle:windowmanagement": "~master",
"doogle:opengl": "~master",
"derelict-ft": "~master",
"doogle:util": "~master",
"doogle:controldefs": "~master"
},
"sourcePaths": ["source/StandardControls"],
"copyFiles-windows-x86": ["libs/freetype-x86-win/libfreetype-6.dll"],
"copyFiles-windows-x86_64": ["libs/freetype-x86_64-win/libfreetype-6.dll"]
},
{
"name": "controldefs",
"targetType": "sourceLibrary",
"dependencies": {
"doogle:windowmanagement": "~master",
"doogle:util": "~master"
},
"sourcePaths": ["source/ControlDefs"]
},
{
"name": "util",
"targetType": "library",
"sourcePaths": ["source/util"]
}
],
"configurations": [
{
"name": "main",
"targetType": "library",
"excludedSourceFiles-windows" : [
"source/doogle/test.d"
]
},
{
"name": "libtest",
"targetType": "executable",
"dflags": ["-main"],
"platforms": ["windows"],
"excludedSourceFiles-windows" : [
"source/doogle/test.d"
]
},
{
"name": "test",
"targetType": "executable",
"platforms": ["windows"],
"copyFiles": [
"resources/AnonymousPro-1.002.001/Anonymous_Pro.ttf",
"resources/shaders/standard.frag",
"resources/shaders/standard.vert",
"resources/models/full_texture_mapping.raw",
"resources/models/full_vertices.raw"
]
}
]
}