-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1012 Bytes
/
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
{
"name": "batch-engine",
"description": "An educational 2D Game Engine ECS based.",
"license": "MIT",
"homepage": "https://github.com/vova616/BatchEngine",
"copyright": "Copyright © 2013, [email protected]",
"authors": [
"Vovchik"
],
"sourcePaths" : [
"source"
],
"dependencies": {
"gl3n": "~master",
"derelict-fi": "~master",
"derelict-gl3": "~master",
"derelict-glfw3": "~master",
"derelict-ft": "~master",
},
"subPackages": [
"./examples/box2d/",
"./examples/life/",
"./examples/gravity/",
],
"configurations": [
{
"name": "application",
"targetType": "library",
},
{
"name": "gravity",
"targetType": "executable",
"sourcePaths" : ["./examples/gravity/"],
"targetPath" : "./",
"dflags": ["-noboundscheck","-release","-O","-vectorize-loops"],
},
{
"name": "life",
"targetType": "executable",
"sourcePaths" : ["./examples/life/"],
"targetPath" : "./",
"dflags": ["-noboundscheck","-release","-O","-vectorize-loops"],
}
],
}