Skip to content

Commit 8d5bc3a

Browse files
committed
Bazel
Signed-off-by: Louise Poubel <louise@openrobotics.org>
1 parent a21bed4 commit 8d5bc3a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

BUILD.bazel

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
load(
2-
"//ign_bazel:build_defs.bzl",
2+
"//gz_bazel:build_defs.bzl",
33
"IGNITION_ROOT",
44
"IGNITION_VISIBILITY",
55
"cmake_configure_file",
66
"generate_include_header",
77
"generate_yaml",
8-
"ign_config_header",
9-
"ign_export_header",
8+
"gz_config_header",
9+
"gz_export_header",
1010
)
1111
load(
1212
":gz_msg_gen.bzl",
@@ -35,15 +35,15 @@ PROJECT_MINOR = 0
3535
PROJECT_PATCH = 0
3636

3737
# Generates config.hh based on the version numbers in CMake code.
38-
ign_config_header(
38+
gz_config_header(
3939
name = "config",
4040
src = "include/gz/msgs/config.hh.in",
4141
cmakelists = ["CMakeLists.txt"],
4242
project_name = PROJECT_NAME,
4343
project_version = (PROJECT_MAJOR, PROJECT_MINOR, PROJECT_PATCH),
4444
)
4545

46-
ign_export_header(
46+
gz_export_header(
4747
name = "include/gz/msgs/Export.hh",
4848
export_base = "IGNITION_MSGS",
4949
lib_name = "ignition-msgs",
@@ -127,7 +127,7 @@ cc_library(
127127
includes = ["include"],
128128
deps = [
129129
":gzmsgs_proto_cc",
130-
IGNITION_ROOT + "ign_math",
130+
IGNITION_ROOT + "gz_math",
131131
"@com_google_protobuf//:protobuf",
132132
"@tinyxml2",
133133
],
@@ -154,7 +154,7 @@ cc_binary(
154154
data = [IGNITION_ROOT + "gz_msgs/test:desc/stringmsg.desc"],
155155
deps = [
156156
":gz_msgs",
157-
IGNITION_ROOT + "ign_math",
157+
IGNITION_ROOT + "gz_math",
158158
IGNITION_ROOT + "gz_msgs/test:test_utils",
159159
"@gtest",
160160
"@gtest//:gtest_main",

test/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
load(
2-
"//ign_bazel:build_defs.bzl",
2+
"//gz_bazel:build_defs.bzl",
33
"IGNITION_ROOT",
44
"IGNITION_VISIBILITY",
55
"cmake_configure_file",

0 commit comments

Comments
 (0)