-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
43 additions
and
42 deletions.
There are no files selected for viewing
This file contains 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
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
add_executable(hey_calculator "calculator.c") | ||
target_link_libraries( | ||
hey_calculator PRIVATE | ||
argparse | ||
hey | ||
llama | ||
sokol | ||
expr | ||
) | ||
set_target_properties(hey_calculator PROPERTIES OUTPUT_NAME "calculator") |
This file contains 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
File renamed without changes.
This file contains 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
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
add_executable(hey_generate "generate.c") | ||
target_link_libraries( | ||
hey_generate PRIVATE | ||
argparse | ||
hey | ||
llama | ||
sokol | ||
) | ||
set_target_properties(hey_generate PROPERTIES OUTPUT_NAME "generate") |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
add_executable(hey_knockknock "knockknock.c") | ||
target_link_libraries( | ||
hey_knockknock PRIVATE | ||
argparse | ||
hey | ||
llama | ||
sokol | ||
) | ||
set_target_properties(hey_knockknock PROPERTIES OUTPUT_NAME "knockknock") |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
add_executable(hey_tokenize "tokenize.c") | ||
target_link_libraries( | ||
hey_tokenize PRIVATE | ||
argparse | ||
hey | ||
llama | ||
) | ||
set_target_properties(hey_tokenize PROPERTIES OUTPUT_NAME "tokenize") |