diff options
Diffstat (limited to 'asl/BUILD.bazel')
-rw-r--r-- | asl/BUILD.bazel | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/asl/BUILD.bazel b/asl/BUILD.bazel new file mode 100644 index 0000000..aa76d47 --- /dev/null +++ b/asl/BUILD.bazel @@ -0,0 +1,17 @@ +# Copyright 2025 Steven Le Rouzic +# +# SPDX-License-Identifier: BSD-3-Clause + +config_setting( + name = "debug", + values = { + "compilation_mode": "dbg", + }, +) + +config_setting( + name = "optimized", + values = { + "compilation_mode": "opt", + }, +) |