Last active
April 20, 2020 16:42
-
-
Save emilk/6aa7d28bfc45117f8bd1ef41c772f587 to your computer and use it in GitHub Desktop.
sublime-build for xcode projects
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
Show hidden characters
{ | |
"working_dir": "${project_path:${folder}}", | |
"shell_cmd": "xcodebuild -project *.xcodeproj", | |
"file_regex": "^(.*):([0-9]*):[0-9]*:[fatal ]+error: ", | |
"selector": "source.c++", | |
"variants": [ | |
{ | |
"name": "Build & Run", | |
"working_dir": "${project_path:${folder}}", | |
"shell_cmd": "xcodebuild -project *.xcodeproj && Build/Release/*.app/Contents/MacOS/*", | |
"file_regex": "^(.*):([0-9]*):[0-9]*:[fatal ]+error: ", | |
"selector": "source.c++", | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment