Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
aappleby committed Apr 23, 2024
1 parent d86c539 commit cb6bd08
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions config/rules.hancho
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@ def c_test(config):

#-------------------------------------------------------------------------------

hancho.c_binary = hancho.callback(c_binary)
hancho.c_library = hancho.callback(c_library)
hancho.c_test = hancho.callback(c_test)
export.c_binary = hancho.callback(c_binary)
export.c_library = hancho.callback(c_library)
export.c_test = hancho.callback(c_test)
2 changes: 1 addition & 1 deletion examples/c_lexer/c_lexer.hancho
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ hancho.rules.c_binary(
libs = c_lexer_lib,
)

hancho.lib = c_lexer_lib
export.lib = c_lexer_lib
2 changes: 1 addition & 1 deletion examples/c_parser/c_parser.hancho
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ hancho.rules.c_binary(
# quiet = True
#)

hancho.lib = c_parser_lib
export.lib = c_parser_lib
2 changes: 1 addition & 1 deletion examples/json/json.hancho
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ hancho.rules.c_test(
quiet = True
)

hancho.lib = json_parser
export.lib = json_parser

0 comments on commit cb6bd08

Please sign in to comment.