Alexander Neumann
Alexander Neumann
If you have problems with find_package being overriden by you somehow. Look at #23195
still relevant
The problem is : ``` if (NOT TARGET raylib) set(XPREFIX PC_RAYLIB) find_package(PkgConfig QUIET) pkg_check_modules(${XPREFIX} QUIET raylib) if (raylib_USE_STATIC_LIBS) set(XPREFIX ${XPREFIX}_STATIC) endif() set(raylib_DEFINITIONS ${${XPREFIX}_CFLAGS}) find_path(raylib_INCLUDE_DIR NAMES raylib.h HINTS ${${XPREFIX}_INCLUDE_DIRS} ) set(RAYLIB_NAMES...
> Our company has banned the use of 7-zip due to legal issues. Please explain that in more detail. The 7zip websites claims that it is free to use: https://www.7-zip.org/faq.html...
> It seems like people would be extremely angry if they get an SBOM claiming that someone installed "OpenSSL 3.0.x" when in fact we installed something from an overlay-port that...
Please check the configure log.
``` try_compile( BOOST_COBALT_HAS_COROUTINE_INCLUDE ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_LIST_DIR}/coroutine.cpp CXX_STANDARD 20 CXX_STANDARD_REQUIRED 20 OUTPUT_VARIABLE TRY_COMPILE_OUTPUT) if (NOT BOOST_COBALT_HAS_COROUTINE_INCLUDE) message(STATUS "Boost.Cobalt: not building, can't include .") message(DEBUG ${TRY_COMPILE_OUTPUT}) return() endif() ``` Need to check why...
`gcc-10` probably needs `-fcoroutines` in `CXXFLAGS`
> (i.e. you would do find_package(AMD) to use suitesparse-amd), That looks like a no go. Is there an equivalent of `find_package(Suitesparse COPMPONENTS AMD)` ?
Yeah I checked upstream. Their `find_package` logic is flawed but nothing for you to fix. There is a Suitesparse_config package but that won't help much. They should really install Suitesparse-config.cmake...