From ee1319dd64b5645b2ee4ae2a2a0ffd13d86f2854 Mon Sep 17 00:00:00 2001 From: Philipp Stephani
elisp_cc_module, elisp_binary, and elisp_test rules. See the rule
documentation below and the examples in the examples directory for details.
-Note that the C++ code used by rules_elisp requires at least C++17, but Bazel
-still compiles with C++11 by default. See
-the
-Abseil FAQ how to correctly change the C++ standard for your project.
elisp_binary, and elisp_test rules depending on this binary
-can then use load or require to load them.
+elisp_library, elisp_binary, and elisp_test rules depending on this
+library can then use load or require to load them.
By default, libraries need to be loaded using a filename relative to the repository root, i.e., package/file. If you want to add From 97123248725e10cea25b55583eea68f39271ed98 Mon Sep 17 00:00:00 2001 From: Philipp Stephani
cc_binary with linkshared = True to create shared objects.
+e.g. cc_binary with linkshared = True to create shared objects.
The elisp_library rule supports the following attributes:
@@ -390,7 +390,7 @@
List of test tags to skip. This attribute contains a list
of tag names; if a test is tagged with one of the tags from this list, it is
-skipped. This can be useful to e.g. skip tests that are flaky or only work in
+skipped. This can be useful to e.g. skip tests that are flaky or only work in
interactive mode. Use the :tags keyword argument to ert-deftest to tag
tests. List of strings; optional; default: [].