Skip to content

Instantly share code, notes, and snippets.

@capnslipp
Forked from kaspermunck/install_dependencies.sh
Last active December 18, 2015 17:49
Show Gist options
  • Save capnslipp/5821250 to your computer and use it in GitHub Desktop.
Save capnslipp/5821250 to your computer and use it in GitHub Desktop.
Quotes. I like quotes. Also, I like accurate constant identifiers. Imagine that.
#!/bin/bash
# run prior to building with XcodeTest to install WaxSim.
# @note: assumed that WaxSim is already present in the repo at WAXSIM_PATH
# I recommend installing a submodule (rather than including WaxSim's source in the repo itself) via something to the effect of `git submodule add git@github.com:jonathanpenn/WaxSim.git Tools/WaxSim`. But you're free to do whatever you want.
WAXSIM_PATH=./Tools/WaxSim/
# install waxsim
cd "$WAXSIM_PATH"
xcodebuild install DSTROOT=/ INSTALL_PATH=/usr/local/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment