Skip to content

Commit 333e48f

Browse files
committed
#95 move pods.d into it's own sub package
1 parent f7ef70d commit 333e48f

File tree

5 files changed

+16
-2
lines changed

5 files changed

+16
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Thumbs.db
44
# Ignore build output:
55
*.exe
66
*.dll
7+
*.a
78

89
#Ignore project files by Intellij
910
.idea/

core/dub.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"name": "core",
3+
"targetType": "library"
4+
}

dub.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
"targetPath": "lib",
88
"targetType": "staticLibrary",
99
"dependencies": {
10-
"ddbc:core": "*"
10+
"ddbc:core": "*",
11+
"ddbc:pods": "*"
1112
},
1213
"subPackages": [
13-
"./core/"
14+
"./core/",
15+
"./pods"
1416
],
1517
"buildRequirements": [
1618
"allowWarnings"

pods/dub.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "pods",
3+
"targetType": "library",
4+
"dependencies": {
5+
"ddbc:core": "*"
6+
}
7+
}
File renamed without changes.

0 commit comments

Comments
 (0)