Skip to content

Instantly share code, notes, and snippets.

@gogoprog
Last active May 18, 2016 09:31
Show Gist options
  • Save gogoprog/65192b2c437888844b40 to your computer and use it in GitHub Desktop.
Save gogoprog/65192b2c437888844b40 to your computer and use it in GitHub Desktop.
.atom-build.json file used for FishingCactus projects
{
"cmd": "make",
"name": "debug",
"args": [ "-j8" ],
"sh": false,
"cwd": "{PROJECT_PATH}/CODE/APP/LINUX/",
"env": {
},
"errorMatch": "(?<file>[\\/0-9a-zA-Z\\._]+):(?<line>\\d+):(?<col>\\d+).*error:(?<message>.+)",
"warningMatch": "(?<file>[\\/0-9a-zA-Z\\._]+):(?<line>\\d+):(?<col>\\d+).*warning:(?<message>.+)",
"keymap": "f7",
"targets": {
"linux": {
"cmd": "make",
"name": "release",
"args": [ "config=releaseopengl2_x32" , "-j8" ],
"sh": false,
"cwd": "{PROJECT_PATH}/CODE/APP/LINUX/",
"env": {
},
"errorMatch": "(?<file>[\\/0-9a-zA-Z\\._]+):(?<line>\\d+):(?<col>\\d+).*error:(?<message>.+)",
"warningMatch": "(?<file>[\\/0-9a-zA-Z\\._]+):(?<line>\\d+):(?<col>\\d+).*warning:(?<message>.+)",
"keymap": "f8"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment