Skip to content

Commit

Permalink
Allow empty glob for inchi
Browse files Browse the repository at this point in the history
  • Loading branch information
IanAWatson committed Dec 12, 2024
1 parent 72f54c6 commit e989cc8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion third_party/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,11 @@ cc_library(
name = "inchi",
srcs = glob(
["InChI/INCHI-1-SRC/INCHI_API/bin/Linux/libinchi.so*"],
allow_empty=True,
),
hdrs = glob (
["InChI/INCHI-1-SRC/INCHI_BASE/src/*.h"]
["InChI/INCHI-1-SRC/INCHI_BASE/src/*.h"],
allow_empty=True,
),
strip_include_prefix = "InChI/INCHI-1-SRC/INCHI_BASE/src",
visibility = ["//visibility:public"],
Expand Down

0 comments on commit e989cc8

Please sign in to comment.