Skip to content

Commit

Permalink
Add include/std/* to the list of headers available through bazel rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Eipifi committed Jul 9, 2019
1 parent a3deefa commit 7ad5aa9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@ cc_library(
],
)

cc_library(
name = 'std',
hdrs = glob([
'include/std/**/*.hpp',
]),
includes = [
"include",
],
)

cc_library(
name = 'range-v3',
hdrs = glob([
Expand All @@ -27,5 +37,6 @@ cc_library(
deps = [
':concepts',
':meta',
':std',
],
)

0 comments on commit 7ad5aa9

Please sign in to comment.