-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdub.sdl
40 lines (37 loc) · 965 Bytes
/
dub.sdl
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
name "har"
description "An extractor/archiver for HAR, the human-readable archive format"
authors "Jonathan Marler"
copyright "Copyright © 2018, Jonathan Marler"
license "BSL-1.0"
version "0.1.0"
targetType "executable"
targetPath "out"
dependency "har:library" version="*"
sourceFiles "harmain.d"
sourcePaths
subPackage {
name "library"
description "An extractor/archiver library for HAR, the human-readable archive format"
targetType "library"
targetName "har"
targetPath "out"
sourcePaths "src"
}
subPackage {
name "test_command_line_tool"
description "Tests the har command line tool"
targetType "executable"
targetPath "out/test"
dependency "har" version="*"
sourceFiles "test_command_line_tool.d"
sourcePaths
}
subPackage {
name "test_library"
description "Tests the archive.har library"
targetType "executable"
targetPath "out/test"
dependency "har:library" version="*"
sourceFiles "test/hartests.d"
sourcePaths
}