Skip to content

Commit

Permalink
Add minimal Bazel support
Browse files Browse the repository at this point in the history
  • Loading branch information
arximboldi committed Apr 2, 2019
1 parent a844dca commit 5df9b5f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
bazel-*
build/
build-*/
reports/
Expand Down
11 changes: 11 additions & 0 deletions BUILD
@@ -0,0 +1,11 @@
package(default_visibility = ["//visibility:public"])

cc_library(
name = "immer",
include_prefix = "immer",
strip_include_prefix =
"immer",
hdrs = glob([
"immer/**/*.hpp",
]),
)
Empty file added WORKSPACE
Empty file.

0 comments on commit 5df9b5f

Please sign in to comment.