Skip to content

Commit

Permalink
fix: Enabled embed bitcode on iOS libraries where it was still missing
Browse files Browse the repository at this point in the history
  • Loading branch information
atteneder committed Jul 16, 2021
1 parent efc1417 commit a4ca935
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.2] - 2021-07-16
### Fixed
- Enabled embed bitcode on iOS libraries where it was still missing

## [0.4.1] - 2021-07-02
### Changed
- Android NDK updated to r21e
Expand Down
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ target_link_libraries(ktx_unity

if(APPLE)
set_target_properties(ktx_unity PROPERTIES BUNDLE true)
if(KTX_EMBED_BITCODE)
target_compile_options(ktx_unity PRIVATE "-fembed-bitcode")
endif()
elseif(WIN32)
target_sources(
ktx_unity
Expand Down
2 changes: 1 addition & 1 deletion KTX-Software

0 comments on commit a4ca935

Please sign in to comment.