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