Skip to content

Commit

Permalink
Add soup build recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Asplund committed Dec 23, 2022
1 parent 971337c commit 720a918
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ bld/
[Bb]in/
[Oo]bj/
[Ll]og/
out/

# Visual Studio 2015 cache/options directory
.vs/
Expand Down
37 changes: 37 additions & 0 deletions src/Recipe.sml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
Name: "gravity"
Language: "C++|0.4"
Version: "1.0.0"
EnableWarningsAsErrors: false
IncludePaths: [
"compiler/"
"optionals/"
"runtime/"
"shared/"
"utils/"
]
Source: [
"compiler/gravity_ast.c"
"compiler/gravity_codegen.c"
"compiler/gravity_compiler.c"
"compiler/gravity_ircode.c"
"compiler/gravity_lexer.c"
"compiler/gravity_optimizer.c"
"compiler/gravity_parser.c"
"compiler/gravity_semacheck1.c"
"compiler/gravity_semacheck2.c"
"compiler/gravity_symboltable.c"
"compiler/gravity_token.c"
"compiler/gravity_visitor.c"
"optionals/gravity_opt_env.c"
"optionals/gravity_opt_file.c"
"optionals/gravity_opt_json.c"
"optionals/gravity_opt_math.c"
"runtime/gravity_core.c"
"runtime/gravity_vm.c"
"shared/gravity_hash.c"
"shared/gravity_memory.c"
"shared/gravity_value.c"
"utils/gravity_debug.c"
"utils/gravity_json.c"
"utils/gravity_utils.c"
]

0 comments on commit 720a918

Please sign in to comment.