Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 기초
- 오늘도 우라라
- 환경설정
- topic
- 오늘도 우라라 펫
- 마리아 DB
- 토픽
- ros
- MSG
- install opencv-4.4.0 on ubuntu 22.04
- while
- 오늘도 우라라 공략
- Subscribe
- 그랑사가
- publish
- 리눅스
- ubuntu
- LeetCode
- 데이터 베이스
- 우분투
- C언어
- 반복문
- JungOl
- mariaDB
- 프로그래밍
- Linux
- mysql
- 오늘도 우라라 펫 공략
- C++
- 등차수열
Archives
- Today
- Total
하루의 쉼터
[Error] Compilation Error: missing: GRAPHICSMAGICKCPP_INCLUDE_DIRS 본문
프로그래밍/ROS2
[Error] Compilation Error: missing: GRAPHICSMAGICKCPP_INCLUDE_DIRS
Changun An 2023. 2. 24. 10:30반응형
nav2_map_server 포팅 중 아래와 같은 메시지를 만날 수 있다.
Compilation Error: missing: GRAPHICSMAGICKCPP_INCLUDE_DIRS
CMake Error at /usr/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake:230 (message):
GRAPHICSMAGICKCPP_LIBRARIES (missing: GRAPHICSMAGICKCPP_INCLUDE_DIRS)
Call Stack (most recent call first):
/usr/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake:594 (_FPHSA_FAILURE_MESSAGE)
cmake_modules/FindGRAPHICSMAGICKCPP.cmake:31 (find_package_handle_standard_args)
CMakeLists.txt:17 (find_package)
rosdep을 이용하여 관련 종속성을 준비해준다.
sudo rosdep init
rosdep update
rosdep install --from-paths src --ignore-src --rosdistro eloquent -y --skip-keys "console_bridge fastcdr fastrtps libopensplice67 libopensplice69 rti-connext-dds-5.3.1 urdfdom_headers"
or
rosdep install -y -r -q --from-paths src --ignore-src --rosdistro [ros_version] -y
src에는 자기 위치를 잡아주면 된다.
* src가 없다면 종속성 설정할 ws를 정하면 됨.

반응형