Hello world curses app

This commit is contained in:
2018-01-06 18:11:44 -08:00
parent 3db304e893
commit a576e43001
8 changed files with 128 additions and 1 deletions

11
WORKSPACE Normal file
View File

@@ -0,0 +1,11 @@
new_local_repository(
name = "system_include",
path = "/usr/lib",
build_file_content = """
cc_library(
name = "curses",
srcs = ["libcurses.dylib"],
visibility = ["//visibility:public"],
)
""",
)