[BAZEL] remove windows warning
This commit is contained in:
@@ -184,7 +184,12 @@ cc_library(
|
||||
hdrs = [
|
||||
"recordio.h",
|
||||
],
|
||||
linkopts = ["-lz"],
|
||||
linkopts = select({
|
||||
"on_linux": ["-lz"],
|
||||
"on_macos": ["-lz"],
|
||||
"on_windows": [],
|
||||
"//conditions:default": ["-lz"],
|
||||
}),
|
||||
deps = [
|
||||
":base",
|
||||
":file",
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
exports_files(["CMakeLists.txt"] + glob(["*.cc"]) + glob(["*.cs"]) + glob(["*.py"]))
|
||||
|
||||
load(":code_samples.bzl", "code_sample_cc")
|
||||
|
||||
code_sample_cc(name = "minimal_jobshop_cp")
|
||||
|
||||
Reference in New Issue
Block a user