BUILD.bazel 548 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. cc_library(
  2. name = 'concepts',
  3. hdrs = glob([
  4. 'include/concepts/**/*.hpp',
  5. ]),
  6. includes = [
  7. "include",
  8. ],
  9. )
  10. cc_library(
  11. name = 'meta',
  12. hdrs = glob([
  13. 'include/meta/**/*.hpp',
  14. ]),
  15. includes = [
  16. "include",
  17. ],
  18. )
  19. cc_library(
  20. name = 'std',
  21. hdrs = glob([
  22. 'include/std/**/*.hpp',
  23. ]),
  24. includes = [
  25. "include",
  26. ],
  27. )
  28. cc_library(
  29. name = 'range-v3',
  30. hdrs = glob([
  31. 'include/range/v3/**/*.hpp',
  32. ]),
  33. visibility = ["//visibility:public"],
  34. deps = [
  35. ':concepts',
  36. ':meta',
  37. ':std',
  38. ],
  39. )