Skip to content

Commit

Permalink
#95 move pods.d into it's own sub package
Browse files Browse the repository at this point in the history
  • Loading branch information
SingingBush committed Mar 6, 2022
1 parent d03fae9 commit a408e7b
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Thumbs.db
# Ignore build output:
*.exe
*.dll
*.a

#Ignore project files by Intellij
.idea/
Expand Down
4 changes: 4 additions & 0 deletions core/dub.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "core",
"targetType": "library"
}
6 changes: 4 additions & 2 deletions dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@
"targetPath": "lib",
"targetType": "staticLibrary",
"dependencies": {
"ddbc:core": "*"
"ddbc:core": "*",
"ddbc:pods": "*"
},
"subPackages": [
"./core/"
"./core/",
"./pods"
],
"buildRequirements": [
"allowWarnings"
Expand Down
7 changes: 7 additions & 0 deletions pods/dub.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "pods",
"targetType": "library",
"dependencies": {
"ddbc:core": "*"
}
}
File renamed without changes.

0 comments on commit a408e7b

Please sign in to comment.