Skip to content

Commit

Permalink
Merge pull request leetal#155 from SirWhiteHat/update_readme
Browse files Browse the repository at this point in the history
Update readme to highlight necessity for install stage
  • Loading branch information
leetal authored Aug 18, 2022
2 parents ab8607a + 1c9179f commit 34d4352
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ cmake .. -G Xcode -DCMAKE_TOOLCHAIN_FILE=../../ios.toolchain.cmake -DPLATFORM=OS
cmake --build . --config Release
```

This will build and install the library for the given PLATFORM. In this case, iOS with the arm64 architecture.
This will build the library for the given PLATFORM. In this case, iOS with the arm64 architecture.

### COMBINED Options
The options called *COMBINED (OS64COMBINED, TVOSCOMBINED and WATCHOSCOMBINED) will build complete FAT-libraries for
Expand All @@ -68,7 +68,7 @@ Example:
```bash
cmake . -G Xcode -DCMAKE_TOOLCHAIN_FILE=../../ios.toolchain.cmake -DPLATFORM=OS64COMBINED
cmake --build . --config Release
cmake --install . --config Release
cmake --install . --config Release # Necessary to build combined library
```

**_NOTE_: The COMBINED options _ONLY_ work with the Xcode generator (-G Xcode) on CMake versions 3.14+!**
Expand Down

0 comments on commit 34d4352

Please sign in to comment.