diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2026-02-03 14:59:53 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-03 14:59:53 -0500 |
| commit | add95b14f74e6dbe04a6efe98ff0f20424930b73 (patch) | |
| tree | 13ce413ee4190a4c8f8743c7740aaa8d04353f14 /willow/BUILD.bazel | |
| parent | c5b2905c5a64433f8519531a77d3acc42d881f17 (diff) | |
| download | compiler-dev/stefan.tar.gz | |
[willow]: initial frontend work, unit tests (#8)dev/stefan
Diffstat (limited to 'willow/BUILD.bazel')
| -rw-r--r-- | willow/BUILD.bazel | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/willow/BUILD.bazel b/willow/BUILD.bazel index 8726cbd..b38911e 100644 --- a/willow/BUILD.bazel +++ b/willow/BUILD.bazel @@ -1,13 +1,25 @@ +load("@rules_cc//cc:defs.bzl", "cc_library") + cc_library( name = "willow", - srcs = [ - "lib/IR/TypeContext.cpp", - ], + srcs = glob([ + "lib/**/*.cpp", + ]), hdrs = glob([ "include/willow/**/*.h", ]), + copts = [ + "-std=c++23", + "-Wall", + ], strip_include_prefix = "include", visibility = ["//visibility:public"], deps = [ ], ) + +alias( + name = "willowc", + actual = "//willow/tools/willowc:willowc", + visibility = ["//visibility:public"], +) |