Forked from kaspermunck/install_dependencies.sh
Last active
December 18, 2015 17:49
-
-
Save capnslipp/5821250 to your computer and use it in GitHub Desktop.
Quotes. I like quotes. Also, I like accurate constant identifiers. Imagine that.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 [email protected]: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