Hello, I am trying to compile the code but after reaching the end of the make command, I get the following errors:

The cmake command runs without problems and when I run the make command after, it reaches 100% of compiling the code then at the end it shows the error in the screenshot.
I made some changes in the CMakeLists.txt file to include the directories which include the libraries. Here is the current content of my CMakeLists.txt file:
cmake_minimum_required(VERSION 3.1)
LIST(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/elibs/tbb")
project(Texturing)
include(ExternalProject)
if(NOT CMAKE_BUILD_TYPE)
message(STATUS "Setting build type to 'RELWITHDEBINFO' as none was specified.")
set(CMAKE_BUILD_TYPE RELWITHDEBINFO)
endif()
# Search for TBB library (release build)
set(CMAKE_BUILD_TYPE_BACKUP ${CMAKE_BUILD_TYPE})
set(CMAKE_BUILD_TYPE RELEASE)
find_package(TBB REQUIRED)
set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE_BACKUP})
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED yes)
add_definitions(-DEIGEN_MPL2_ONLY)
find_package(OpenMP)
if(OPENMP_FOUND)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${OpenMP_EXE_LINKER_FLAGS}")
endif()
if(CMAKE_COMPILER_IS_GNUCXX)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native -Wall -Wextra -Wundef -pedantic")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mfpmath=sse -funroll-loops")
endif()
find_package(PNG REQUIRED)
find_package(JPEG REQUIRED)
find_package(TIFF REQUIRED)
add_subdirectory(elibs)
include_directories(SYSTEM
${CMAKE_SOURCE_DIR}/elibs/rayint/libs
${CMAKE_SOURCE_DIR}/elibs/mve/libs
${CMAKE_SOURCE_DIR}/elibs/eigen
${CMAKE_SOURCE_DIR}/elibs/mapmap/
${CMAKE_SOURCE_DIR}/elibs/mapmap/mapmap
${CMAKE_SOURCE_DIR}/elibs/mapmap/ext/dset
)
include_directories("/usr/local/lib/python3.10/dist-packages/prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include")
include_directories("/usr/include")
link_directories("/usr/lib/x86_64-linux-gnu")
link_directories("/usr/local/lib")
include_directories(
libs
)
link_directories(
${CMAKE_SOURCE_DIR}/elibs/mve/libs/mve
${CMAKE_SOURCE_DIR}/elibs/mve/libs/util
)
add_subdirectory(libs)
add_subdirectory(apps)
Hello, I am trying to compile the code but after reaching the end of the make command, I get the following errors:
The
cmakecommand runs without problems and when I run themakecommand after, it reaches 100% of compiling the code then at the end it shows the error in the screenshot.I made some changes in the CMakeLists.txt file to include the directories which include the libraries. Here is the current content of my CMakeLists.txt file: