-
Notifications
You must be signed in to change notification settings - Fork 15
/
dub.sdl
35 lines (27 loc) · 869 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
name "excel-d"
description "Excel bindings for D"
authors "Laeeth Isharc" "Stefan Koch" "Atila Neves"
copyright "Copyright © 2016-2019 Kaleidic Associates Advisory Limited"
license "BSD"
dependency "nogc" version="~>0.5.0"
configuration "default" {
targetType "sourceLibrary"
}
configuration "testLibrary" {
// FIXME: static constructors don't get run if the targetType is "library"
targetType "sourceLibrary"
versions "testLibraryExcelD"
dependency "unit-threaded" version="*"
}
configuration "unittest" {
targetType "executable"
targetName "ut"
targetPath "bin"
importPaths "source" "tests"
sourcePaths "source" "tests"
mainSourceFile "tests/ut_main.d"
versions "testingExcelD" "testLibraryExcelD"
dflags "-preview=dip1000"
dependency "unit-threaded" version="*"
dependency "automem" version="*"
}