Skip to content

miniAudicle for iPad

Spencer Salazar edited this page May 13, 2016 · 6 revisions

Getting the source code

First clone the miniAudicle repo.

git clone https://github.com/ccrma/miniAudicle.git

Then switch to the ipad branch.

cd miniAudicle
git checkout ipad

Initialize submodules:

git submodule init

Update submodules:

git submodule update

Note: Submodules can be tricky. You should generally update submodules every time you switch branches or pull new changes to ensure you are on the latest version of a given submodule.

To build the app and run it on a device or in the simulator, open miniAudicle.xcodeproj (in the src/ folder). Select the "miniAudicle iOS" scheme in the scheme selection popup (next to the square "stop" button in the Xcode toolbar), select the desired destination (device or simulator), and hit the "play" button. After taking a minute to compile all of the source code, if all has gone well, you should have the app running!

In the Xcode project, iOS specific source code itself is located under "Source/miniAudicle iOS" (or src/ios in the filesystem). The iOS source code is further organized into main, editor, player, util, and a few other sections.

Clone this wiki locally