AnalogTapeModel

Physical modelling signal processing for analog tape recording
Log | Files | Refs | Submodules | README | LICENSE

commit e7664cc2f0fdf7c9457317711d4f1eab83e3a720
parent 7b3b627f4637b85820db00999cb06a06be007d40
Author: jatinchowdhury18 <[email protected]>
Date:   Wed, 31 Mar 2021 21:21:28 -0700

Add iOS build instructions

Diffstat:
MBUILDING.md | 17+++++++++++++++++
1 file changed, 17 insertions(+), 0 deletions(-)

diff --git a/BUILDING.md b/BUILDING.md @@ -22,6 +22,23 @@ cmake -Bbuild cmake --build build/ --config Release ``` +## Building for iOS + +To build for iOS, you can use the following CMake configuration command: +```bash +cmake -Bbuild-ios -GXcode -DCMAKE_SYSTEM_NAME=iOS \ + -DCMAKE_OSX_DEPLOYMENT_TARGET=11.4 \ + -DCMAKE_XCODE_ATTRIBUTE_DEVELOPMENT_TEAM="$YOUR_TEAM_ID" \ + -DCMAKE_XCODE_ATTRIBUTE_TARGETED_DEVICE_FAMILY="1,2" \ + -DCMAKE_XCODE_ATTRIBUTE_ENABLE_BITCODE="NO" +``` +Then, go to the `build-ios/` directory, open the Xcode project, +and build. Note that you may not need to pass the +`XCODE_ATTRIBUTE_DEVELOPMENT_TEAM` argument if you're +building for your own local device, or using the Xcode simulator. +Alternatively, you could set the development team manually from +within Xcode. + ## Linux Dependencies The Linux build utilises the following dependencies: - libasound