Initial commit I guess

This commit is contained in:
John Doty 2025-01-11 10:08:07 -08:00
commit 9a070a5f8f
7 changed files with 91 additions and 0 deletions

13
BUCK Normal file
View file

@ -0,0 +1,13 @@
# A list of available rules and their signatures can be found here: https://buck2.build/docs/prelude/globals/
genrule(
name = "hello_world",
out = "out.txt",
cmd = "echo BUILT BY BUCK2> $OUT",
)
cxx_binary(
name = "main",
srcs = ["main.cpp"],
link_style = "static",
)