-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.sdl
47 lines (39 loc) · 1.58 KB
/
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
41
42
43
44
45
46
47
name "oceandrift-database"
description "ORM & Database Abstraction Layer"
copyright "Copyright © 2022 Elias Batek"
license "BSL-1.0"
authors "Elias Batek (0xEAB)"
targetType "library"
targetPath "bin"
dependency ":dbal" version="*"
subPackage {
name "dbal"
description "DataBase Abstraction Layer"
targetPath "bin"
excludedSourceFiles "source/oceandrift/db/package.d" "source/oceandrift/db/mariadb.d" "source/oceandrift/db/orm.d" "source/oceandrift/db/sqlite3.d" // DCD does not properly support “sourceFiles”
}
dependency ":mariadb" version="*"
subPackage {
name "mariadb"
description "MariaDB driver for the oceandrift-database DBAL"
targetPath "bin"
excludedSourceFiles "source/oceandrift/db/package.d" "source/oceandrift/db/dbal/*" "source/oceandrift/db/orm.d" "source/oceandrift/db/sqlite3.d"
dependency "oceandrift-database:dbal" version="*"
dependency "mysql-native" version="~>3.2.0"
}
dependency ":sqlite3" version="*"
subPackage {
name "sqlite3"
description "SQLite3 driver for the oceandrift-database DBAL"
targetPath "bin"
libs "sqlite3" platform="posix"
excludedSourceFiles "source/oceandrift/db/package.d" "source/oceandrift/db/dbal/*" "source/oceandrift/db/mariadb.d" "source/oceandrift/db/orm.d"
dependency "oceandrift-database:dbal" version="*"
}
dependency ":orm" version="*"
subPackage {
name "orm"
description "Object-Relation Mapper"
targetPath "bin"
excludedSourceFiles "source/oceandrift/db/package.d" "source/oceandrift/db/dbal/*" "source/oceandrift/db/mariadb.d" "source/oceandrift/db/sqlite3.d"
}