Skip to content

Commit

Permalink
Merge pull request #28 from AdaEngine/feature/tilemaps
Browse files Browse the repository at this point in the history
Remove AdaBox2D
  • Loading branch information
SpectralDragon committed Jun 4, 2024
2 parents f5338a3 + 1e76d6d commit 2e149fd
Show file tree
Hide file tree
Showing 14 changed files with 188 additions and 860 deletions.
13 changes: 3 additions & 10 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ ada_engine_deps = [
"@libpng",
"@SPIRV-Cross",
":SPIRVCompiler",
":AdaBox2d",
"@swiftpkg_box2d_swift//:box2d",
":MiniAudioBindings"
]

Expand All @@ -135,13 +135,6 @@ cc_ada_library(
],
)

cc_ada_library(
name = "AdaBox2d",
deps = [
"@swiftpkg_box2d_swift//:box2d",
],
)

# Swift Libraries

swift_ada_library(
Expand Down Expand Up @@ -229,7 +222,7 @@ macos_application(
name = "AdaEditor-macos",
bundle_id = "org.adaengine.AdaEditor-macos",
infoplists = ["Sources/AdaEditor/Platforms/macOS/Info.plist"],
minimum_os_version = "13.0",
minimum_os_version = "14.0",
deps = [
":AdaEditor",
]
Expand All @@ -242,7 +235,7 @@ ios_application(
"iphone", "ipad",
],
infoplists = ["Sources/AdaEditor/Platforms/iOS/Info.plist"],
minimum_os_version = "14.0",
minimum_os_version = "16.0",
deps = [
":AdaEditor",
]
Expand Down
2 changes: 1 addition & 1 deletion Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"location" : "https://github.com/AdaEngine/box2d-swift",
"state" : {
"branch" : "main",
"revision" : "38c5c68cc7073638cce540599f79ebb257d0bd02"
"revision" : "6992c1b4269b52cf4cc3cd86ae16af471970c768"
}
},
{
Expand Down
13 changes: 3 additions & 10 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ var adaEngineDependencies: [Target.Dependency] = [
"libpng",
"SPIRV-Cross",
"SPIRVCompiler",
"AdaBox2d",
.product(name: "box2d", package: "box2d-swift"),
"AdaEngineMacros"
// "Vulkan"
]
Expand Down Expand Up @@ -236,13 +236,6 @@ targets += [
"glslang"
],
publicHeadersPath: "."
),
.target(
name: "AdaBox2d",
dependencies: [
.product(name: "box2d", package: "box2d-swift")
],
publicHeadersPath: "."
)
]

Expand All @@ -269,8 +262,8 @@ let package = Package(
name: "AdaEngine",
defaultLocalization: "en",
platforms: [
.iOS(.v14),
.macOS(.v13),
.iOS(.v16),
.macOS(.v14),
],
products: products,
dependencies: [],
Expand Down
Loading

0 comments on commit 2e149fd

Please sign in to comment.