CMake Error at CMakeLists.txt:1 (cmake_minimum_required): CMake 3.0.2 or higher is required. You are running version 2.8.12.2 cmake 로 컴파일시 버전이 낮을 경우 하는데 높은 버전으로 재설치 후 컴파일을 진행하면된다. 다운로드 https://github.com/Kitware/CMake/releases/download/v3.25.2/cmake-3.25.2.tar.gz 압축해제 tar -zxvf cmake-3.25.2.tar.gz 설치 디렉토리 이동 cd cmake-3.25.2/ 설치 ./configure --prefix=/usr/local/cmake make make install 버전확인 /usr/lo..