Skip to content

Commit

Permalink
First attempt at building and testing boost.serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewkatson committed May 16, 2024
1 parent bf1d5d3 commit 6b4bf9c
Show file tree
Hide file tree
Showing 9 changed files with 7,659 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .bazelrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

common --enable_bzlmod
build --incompatible_use_platforms_repo_for_constraints
build --incompatible_enable_cc_toolchain_resolution
build --incompatible_strict_action_env
build --enable_runfiles
build --registry=https://raw.githubusercontent.com/bazelboost/registry/main
build --registry=https://bcr.bazel.build
query --registry=https://raw.githubusercontent.com/bazelboost/registry/main
query --registry=https://bcr.bazel.build

try-import %workspace%/user.bazelrc
3 changes: 2 additions & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ cc_library(
"include/**/*.hpp",
"include/**/*.h",
"include/**/*.ipp",
]),
]) ,
includes = ["include"],
srcs = glob(["src/**/*.cpp", "src/**/*.ipp"]),
deps = [
"@boost.array",
"@boost.assert",
Expand Down
4 changes: 2 additions & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ bazel_dep(name = "boost.array", version = "1.83.0.bzl.1")
bazel_dep(name = "boost.assert", version = "1.83.0.bzl.1")
bazel_dep(name = "boost.config", version = "1.83.0.bzl.6")
bazel_dep(name = "boost.core", version = "1.83.0.bzl.1")
bazel_dep(name = "boost.detail", version = "1.83.0.bzl.1")
bazel_dep(name = "boost.detail", version = "1.83.0.bzl.2")
bazel_dep(name = "boost.function", version = "1.83.0.bzl.1")
bazel_dep(name = "boost.integer", version = "1.83.0.bzl.1")
bazel_dep(name = "boost.io", version = "1.83.0.bzl.1")
Expand All @@ -20,7 +20,7 @@ bazel_dep(name = "boost.optional", version = "1.83.0.bzl.1")
bazel_dep(name = "boost.predef", version = "1.83.0.bzl.1")
bazel_dep(name = "boost.preprocessor", version = "1.83.0.bzl.1")
bazel_dep(name = "boost.smart_ptr", version = "1.83.0.bzl.1")
bazel_dep(name = "boost.spirit", version = "1.83.0.bzl.1")
bazel_dep(name = "boost.spirit", version = "1.83.0.bzl.2")
bazel_dep(name = "boost.static_assert", version = "1.83.0.bzl.1")
bazel_dep(name = "boost.type_traits", version = "1.83.0.bzl.1")
bazel_dep(name = "boost.unordered", version = "1.83.0.bzl.1")
Expand Down
Loading

0 comments on commit 6b4bf9c

Please sign in to comment.