mirror of
https://github.com/Light-City/CPlusPlusThings.git
synced 2026-02-04 02:54:42 +08:00
10 lines
208 B
Python
10 lines
208 B
Python
# please run `bazel run //codingStyleIdioms/2_enumclass:namespace`
|
|
|
|
load("@rules_cc//cc:defs.bzl", "cc_binary")
|
|
|
|
cc_binary(
|
|
name = "namespace",
|
|
srcs = ["namespace.cpp"],
|
|
copts = ["-std=c++11"],
|
|
)
|