Skip to content

Commit

Permalink
fix(typo): Depend on release builds for release targets
Browse files Browse the repository at this point in the history
  • Loading branch information
nythepegasus committed Dec 8, 2024
1 parent 61d4ee9 commit 24fdd24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ $(1): $(2)
endef

$(eval $(call make-xcframework,$(TARGET).xcframework,build,$(IOS_NATIVE_DEBUG),$(IOS_SIM_DEBUG)))
$(eval $(call make-xcframework,$(TARGET)-release.xcframework,build,$(IOS_NATIVE_RELEASE),$(IOS_SIM_RELEASE)))
$(eval $(call make-xcframework,$(TARGET)-release.xcframework,build-release,$(IOS_NATIVE_RELEASE),$(IOS_SIM_RELEASE)))


define make-xcframework-full # Idek if this ever worked lol
Expand Down Expand Up @@ -123,7 +123,7 @@ $(1): $(2)
endef

$(eval $(call make-xcframework-full,$(TARGET)-full.xcframework,build,$(IOS_NATIVE_DEBUG),$(IOS_SIM_DEBUG)))
$(eval $(call make-xcframework-full,$(TARGET)-full-release.xcframework,build,$(IOS_NATIVE_RELEASE),$(IOS_SIM_RELEASE)))
$(eval $(call make-xcframework-full,$(TARGET)-full-release.xcframework,build-release,$(IOS_NATIVE_RELEASE),$(IOS_SIM_RELEASE)))


zip: $(TARGET).xcframework
Expand Down

0 comments on commit 24fdd24

Please sign in to comment.