You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
358 B
15 lines
358 B
## How to build for iOS:
|
|
```bash
|
|
cd cpp
|
|
cmake -B build -G Xcode -DCMAKE_TOOLCHAIN_FILE=../../ios.toolchain.cmake -DPLATFORM=OS64
|
|
cmake --build build --config Release
|
|
```
|
|
|
|
## How to build for simulator:
|
|
```bash
|
|
cd cpp
|
|
cmake -B build -G Xcode -DCMAKE_TOOLCHAIN_FILE=../../ios.toolchain.cmake -DPLATFORM=SIMULATORARM64
|
|
cmake --build build --config Release
|
|
```
|
|
|