You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/mnt/Volume_3/Gentoo/projects/Cplus/SymbolFinder/build> make -j8
CMake Error at build/_deps/tl-expected-build/tl-expected-config.cmake:27 (include):
include could notfind requested file:
/mnt/Volume_3/Gentoo/projects/Cplus/SymbolFinder/build/_deps/tl-expected-build/tl-expected-targets.cmake
Call Stack (most recent call first):
cmake/Modules/Tl-expected.cmake:16 (find_package)
CMakeLists.txt:31 (handle_tl_expected)
The problematic cmake file is this:
####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ############## Any changes to this file will be overwritten by the next CMake run ########### The input file was tl-expected-config.cmake.in ########get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../"ABSOLUTE)
macro(set_and_check _var _file)
set(${_var}"${_file}")
if(NOTEXISTS"${_file}")
message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !")
endif()
endmacro()
macro(check_required_components _NAME)
foreach(comp ${${_NAME}_FIND_COMPONENTS})
if(NOT${_NAME}_${comp}_FOUND)
if(${_NAME}_FIND_REQUIRED_${comp})
set(${_NAME}_FOUND FALSE)
endif()
endif()
endforeach()
endmacro()
####################################################################################include("${CMAKE_CURRENT_LIST_DIR}/tl-expected-targets.cmake") #<- This isn't found.
When I try to grep in the "${CMAKE_BINARY_DIR}", I can't find any relevant file. Where can I search for this file?
Thank you for your time.
The text was updated successfully, but these errors were encountered:
Hi,
I am using
FetchContent
to useexpected
as an external dependency like this:But when configuring I get this error:
The problematic cmake file is this:
When I try to
grep
in the "${CMAKE_BINARY_DIR}", I can't find any relevant file. Where can I search for this file?Thank you for your time.
The text was updated successfully, but these errors were encountered: