| load("@rules_cc//cc:defs.bzl", "cc_library") | |
| cc_library( | |
| name = "exprtk", | |
| hdrs = ["exprtk.hpp"], | |
| features = ["parse_headers"], | |
| include_prefix = "exprtk", | |
| includes = [""], | |
| visibility = ["//visibility:public"], | |
| ) | |
| cc_test( | |
| name = "exprtk_test", | |
| srcs = ["exprtk_test.cpp"], | |
| data = [ | |
| "exprtk_functional_ext_test.txt", | |
| "exprtk_functional_test.txt", | |
| ], | |
| deps = [":exprtk"], | |
| ) |