During the colcon build there is a “zed_msgs” missing error

Hello,
when i run the colcon build commad this error appears evey time
i am using ubuntu 22, jetson orin, ros humble
i follow this installation process

mkdir -p ~/ros2_ws/src/ # create your workspace if it does not exist
cd ~/ros2_ws/src/ #use your current ros2 workspace folder
git clone GitHub - stereolabs/zed-ros2-wrapper: ROS 2 wrapper for the ZED SDK
cd ..
sudo apt update
rosdep update
rosdep install --from-paths src --ignore-src -r -y # install dependencies
colcon build --symlink-install --cmake-args=-DCMAKE_BUILD_TYPE=Release --parallel-workers $(nproc) # build the workspace
echo source $(pwd)/install/local_setup.bash >> ~/.bashrc # automatically source the installation in every new bash (optional)
source ~/.bashrc

v_agg@ubuntu:~/ros2_ws$ colcon build --symlink-install --cmake-args=-DCMAKE_BUILD_TYPE=Release --parallel-workers $(nproc) # build the workspace
Starting >>> zed_components
— stderr: zed_components
CMake Warning at CMakeLists.txt:123 (find_package):
By not providing “Findzed_msgs.cmake” in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by “zed_msgs”,
but CMake did not find one.

Could not find a package configuration file provided by “zed_msgs” with any
of the following names:

zed_msgsConfig.cmake
zed_msgs-config.cmake

Add the installation prefix of “zed_msgs” to CMAKE_PREFIX_PATH or set
“zed_msgs_DIR” to a directory containing one of the above files. If
“zed_msgs” provides a separate development package or SDK, be sure it has
been installed.

CMake Error at /opt/ros/humble/share/ament_cmake_target_dependencies/cmake/ament_target_dependencies.cmake:77 (message):
ament_target_dependencies() the passed package name ‘zed_msgs’ was not
found before
Call Stack (most recent call first):
CMakeLists.txt:274 (ament_target_dependencies)


Failed <<< zed_components [3.82s, exited with code 1]

Summary: 0 packages finished [4.46s]
1 package failed: zed_components
1 package had stderr output: zed_components
2 packages not processed
v_agg@ubuntu:~/ros2_ws$

Please help to solve this error i also try multiple time by cleaning and rebuild but same error every time

v_agg@ubuntu:~/ros2_ws$ colcon build --symlink-install

Starting >>> zed_components
[Processing: zed_components]components:build 58% - 30.0s]
[Processing: zed_components]
— stderr: zed_components
/home/v_agg/ros2_ws/src/zed-ros2-wrapper/zed_components/src/zed_camera/src/zed_camera_component_main.cpp: In member function ‘bool stereolabs::ZedCamera::startCamera()’:
/home/v_agg/ros2_ws/src/zed-ros2-wrapper/zed_components/src/zed_camera/src/zed_camera_component_main.cpp:2483:40: error: ‘DRIVER_FAILURE’ is not a member of ‘sl::ERROR_CODE’
2483 | if (mConnStatus == sl::ERROR_CODE::DRIVER_FAILURE) {
| ^~~~~~~~~~~~~~
/home/v_agg/ros2_ws/src/zed-ros2-wrapper/zed_components/src/zed_camera_one/src/zed_camera_one_component_main.cpp: In member function ‘bool stereolabs::ZedCameraOne::openZedCamera()’:
/home/v_agg/ros2_ws/src/zed-ros2-wrapper/zed_components/src/zed_camera_one/src/zed_camera_one_component_main.cpp:777:40: error: ‘DRIVER_FAILURE’ is not a member of ‘sl::ERROR_CODE’
777 | if (_connStatus == sl::ERROR_CODE::DRIVER_FAILURE) {
| ^~~~~~~~~~~~~~
gmake[2]: *** [CMakeFiles/zed_camera_one_component.dir/build.make:132: CMakeFiles/zed_camera_one_component.dir/src/zed_camera_one/src/zed_camera_one_component_main.cpp.o] Error 1
gmake[2]: *** Waiting for unfinished jobs…
gmake[1]: *** [CMakeFiles/Makefile2:192: CMakeFiles/zed_camera_one_component.dir/all] Error 2
gmake[1]: *** Waiting for unfinished jobs…
gmake[2]: *** [CMakeFiles/zed_camera_component.dir/build.make:132: CMakeFiles/zed_camera_component.dir/src/zed_camera/src/zed_camera_component_main.cpp.o] Error 1
gmake[2]: *** Waiting for unfinished jobs…
gmake[1]: *** [CMakeFiles/Makefile2:166: CMakeFiles/zed_camera_component.dir/all] Error 2
gmake: *** [Makefile:146: all] Error 2

Failed <<< zed_components [1min 28s, exited with code 2]

Summary: 0 packages finished [1min 29s]
1 package failed: zed_components
1 package had stderr output: zed_components
2 packages not processed

new error is encounter i will fix the previous one please help in this

Please install the missing zed_msgs dependency (sudo apt install ros-humble-zed-msgs) and update to the latest version in the master branch.