Last active
August 29, 2015 14:11
-
-
Save teliosdev/1494270313deb87f3acc to your computer and use it in GitHub Desktop.
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
{ | |
"configuration": { | |
"require": [ | |
{ "header": "stdlib.h" }, | |
{ "header": "stdint.h" }, | |
{ "header": "stdio.h" } | |
] | |
} | |
} |
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
{ | |
"environments": { | |
"debug": { | |
"cc": "gcc" | |
} | |
} | |
} |
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
{ | |
"rules": [ | |
{ | |
"from": ".y", | |
"to": ".c", | |
"actions": [ | |
{ "shell": "bison --report=all -Wall {input} -o {output}" } | |
] | |
}, | |
{ | |
"from": ".rl", | |
"to": ".c", | |
"actions": [ | |
{ "shell": "ragel {input}" } | |
] | |
} | |
] | |
} |
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
{ | |
"tasks": { | |
"meme": { | |
"actions": [ | |
{ "shell": "echo epic maymay" } | |
] | |
} | |
} | |
} |
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
{ | |
"projects": { | |
"my-cool-app": { | |
"language": "c", | |
"sources": [ "src/hello-world/**.c" ], | |
"output": { "type": "library.static", "name": "world" }, | |
"includes": [ | |
".take/my-cool-app/configure.json", | |
".take/my-cool-app/envs.json", | |
".take/my-cool-app/rules.json", | |
".take/my-cool-app/tasks.json" | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment