🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
411 B

  1. _msvc_copts = ["/std:c++17"]
  2. _gcc_copts = ["-std=c++17"]
  3. cc_library(
  4. name = "entt",
  5. visibility = ["//visibility:public"],
  6. strip_include_prefix = "src",
  7. hdrs = glob(["src/**/*.h", "src/**/*.hpp"]),
  8. copts = select({
  9. "@bazel_tools//src/conditions:windows": _msvc_copts,
  10. "@bazel_tools//src/conditions:windows_msvc": _msvc_copts,
  11. "//conditions:default": _gcc_copts,
  12. }),
  13. )