Initial late commit

This commit is contained in:
Erris
2026-01-12 16:57:00 +01:00
commit 9c41714b96
181 changed files with 32168 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
########## MACROS ###########################################################################
#############################################################################################
# Requires CMake > 3.15
if(${CMAKE_VERSION} VERSION_LESS "3.15")
message(FATAL_ERROR "The 'CMakeDeps' generator only works with CMake >= 3.15")
endif()
if(spdlog_FIND_QUIETLY)
set(spdlog_MESSAGE_MODE VERBOSE)
else()
set(spdlog_MESSAGE_MODE STATUS)
endif()
include(${CMAKE_CURRENT_LIST_DIR}/cmakedeps_macros.cmake)
include(${CMAKE_CURRENT_LIST_DIR}/spdlogTargets.cmake)
include(CMakeFindDependencyMacro)
check_build_type_defined()
foreach(_DEPENDENCY ${spdlog_FIND_DEPENDENCY_NAMES} )
# Check that we have not already called a find_package with the transitive dependency
if(NOT ${_DEPENDENCY}_FOUND)
find_dependency(${_DEPENDENCY} REQUIRED ${${_DEPENDENCY}_FIND_MODE})
endif()
endforeach()
set(spdlog_VERSION_STRING "1.16.0")
set(spdlog_INCLUDE_DIRS ${spdlog_INCLUDE_DIRS_NONE} )
set(spdlog_INCLUDE_DIR ${spdlog_INCLUDE_DIRS_NONE} )
set(spdlog_LIBRARIES ${spdlog_LIBRARIES_NONE} )
set(spdlog_DEFINITIONS ${spdlog_DEFINITIONS_NONE} )
# Only the last installed configuration BUILD_MODULES are included to avoid the collision
foreach(_BUILD_MODULE ${spdlog_BUILD_MODULES_PATHS_NONE} )
message(${spdlog_MESSAGE_MODE} "Conan: Including build module from '${_BUILD_MODULE}'")
include(${_BUILD_MODULE})
endforeach()