diff options
author | Alberto Sartori <alberto.sartori@huawei.com> | 2024-07-31 18:01:41 +0200 |
---|---|---|
committer | Alberto Sartori <alberto.sartori@huawei.com> | 2024-07-31 18:12:32 +0200 |
commit | c248c33ac05a44c97c1cee413f13d65bf9c0327d (patch) | |
tree | a941c423ccf0edbaa6fd99390d02a469aab54edf /doc/number-guessing-bot/TARGETS | |
parent | 71962cee77f28f16611be17a518ffc9e6bbe7860 (diff) | |
download | rules-rust-c248c33ac05a44c97c1cee413f13d65bf9c0327d.tar.gz |
rules-rust: add tutorials to transition and import Cargo-based projects
Diffstat (limited to 'doc/number-guessing-bot/TARGETS')
-rw-r--r-- | doc/number-guessing-bot/TARGETS | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/number-guessing-bot/TARGETS b/doc/number-guessing-bot/TARGETS new file mode 100644 index 0000000..0b8d2ad --- /dev/null +++ b/doc/number-guessing-bot/TARGETS @@ -0,0 +1,12 @@ +{ "bot": + { "type": ["@", "rules-cc", "CC", "binary"] + , "name": ["bot"] + , "srcs": ["bot.cpp"] + } +, "bot-test": + { "type": ["@", "rules-cc", "shell/test", "script"] + , "name": ["guessing_game"] + , "test": ["play_game.sh"] + , "deps": ["bot", ["@", "guessing_game", "", "guessing_game"]] + } +} |