Files
codeql/misc/codegen/BUILD.bazel
Paolo Tranquilli b38c3268fb fix: upgrade rules_kotlin to 2.2.2 for Windows compatibility
Upgrade from 2.2.0-codeql.1 to 2.2.2-codeql.1 which includes:
- Fix Windows bzlmod builder classpath issue
- Move to official bazel worker api

This eliminates the need for --legacy_external_runfiles on Windows.

Also fix codegen templates to be included in runfiles.
2026-02-10 13:44:07 +01:00

18 lines
440 B
Python

load("@rules_python//python:defs.bzl", "py_binary")
py_binary(
name = "codegen",
srcs = ["codegen.py"],
data = [
"//misc/codegen/templates:cpp",
"//misc/codegen/templates:dbscheme",
"//misc/codegen/templates:ql",
"//misc/codegen/templates:rust",
"//misc/codegen/templates:trap",
],
visibility = ["//visibility:public"],
deps = [
"//misc/codegen/generators",
],
)