Skip to content

Commit

Permalink
iox-#590 Adapt Bazel files accordingly to CMake changes
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
  • Loading branch information
mossmaurice committed Aug 2, 2022
1 parent 8a9041f commit 0b5b551
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
29 changes: 29 additions & 0 deletions iceoryx_dust/BUILD.bazel
@@ -0,0 +1,29 @@
# Copyright (c) 2022 by Apex.AI Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0

load("@rules_cc//cc:defs.bzl", "cc_library")

cc_library(
name = "iceoryx_dust",
srcs = glob([
"source/**/*.cpp",
"source/**/*.hpp",
]),
hdrs = glob(["include/**"]),
strip_include_prefix = "include",
visibility = ["//visibility:public"],
eps = ["//iceoryx_hoofs"],
)
2 changes: 1 addition & 1 deletion iceoryx_posh/BUILD.bazel
Expand Up @@ -89,7 +89,7 @@ cc_library(
],
strip_include_prefix = "include",
visibility = ["//visibility:public"],
deps = ["//iceoryx_hoofs"],
deps = ["//iceoryx_dust", "//iceoryx_hoofs",],
)

#
Expand Down

0 comments on commit 0b5b551

Please sign in to comment.