Created
June 1, 2014 17:01
-
-
Save sethkontny/5a8482fb4faa670aff97 to your computer and use it in GitHub Desktop.
This file contains 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
Show hidden characters
{ | |
"folders": [ | |
{ | |
"follow_symlinks": true, | |
"path": "." | |
} | |
], | |
"build_systems": [ | |
{ | |
"name": "Xcode Build", | |
"cmd": [ "xcodebuild", "-project", "$project_path/build/$project_base_name.xcodeproj", "-configuration", "Debug" ], | |
"variants": [ | |
{ | |
"name": "Xcode Run", | |
"cmd": [ "$project_path/build/build/Debug/$project_base_name.app/Contents/MacOS/$project_base_name" ], | |
}, | |
{ | |
"name": "Xcode Build Release", | |
"cmd": [ "xcodebuild", "-project", "$project_path/build/$project_base_name.xcodeproj", "-configuration", "Release" ], | |
}, | |
{ | |
"name": "Xcode Run Release", | |
"cmd": [ "$project_path/build/build/Release/$project_base_name.app/Contents/MacOS/$project_base_name" ], | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment