forked from SiegeLord/Tango-D2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (45 loc) · 1.44 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
{
"name": "tango",
"description": "A large general-purpose library. A port of the D1 Tango library.",
"homepage": "https://github.com/SiegeLord/Tango-D2/",
"license": "BSD 3-clause",
"authors": [
"SiegeLord",
"Igor Stepanov",
"Kris Bell",
"Sean Kelly",
"Lars Ivar Igesund",
"other original Tango authors"
],
"sourcePaths": [
"tango/core", "tango/io", "tango/math", "tango/net", "tango/stdc",
"tango/sys/consts", "tango/text", "tango/time", "tango/util"
],
"sourceFiles": [
"tango/sys/Common.d", "tango/sys/Environment.d",
"tango/sys/HomeFolder.d", "tango/sys/Pipe.d",
"tango/sys/Process.d", "tango/sys/SharedLib.d"
],
"sourcePaths-windows": ["tango/sys/win32"],
"sourcePaths-linux": ["tango/sys/linux"],
"sourcePaths-freebsd": ["tango/sys/freebsd"],
"sourcePaths-solaris": ["tango/sys/solaris"],
"sourcePaths-osx": ["tango/sys/darwin"],
"excludedSourceFiles-windows": ["tango/stdc/posix/*"],
"versions-osx" : ["osx", "darwin"],
"versions-freebsd" : ["freebsd"],
"importPaths": ["."],
"configurations": [
{
"name": "static",
"targetType": "staticLibrary"
},
{
"name": "shared",
"targetType": "dynamicLibrary"
}
],
"buildRequirements": ["silenceWarnings"],
"targetName": "tango",
"targetPath": "."
}