Page MenuHomePhorge

libkazvConfig.cmake
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

libkazvConfig.cmake

include(CMakeFindDependencyMacro)
find_dependency(Boost REQUIRED COMPONENTS serialization regex)
find_dependency(nlohmann_json)
find_dependency(Immer)
find_dependency(Zug)
find_dependency(Lager)
set(_oldCmakeModulePath ${CMAKE_MODULE_PATH})
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}" ${CMAKE_MODULE_PATH})
include("${CMAKE_CURRENT_LIST_DIR}/libkazvTargets.cmake")
set(libkazvSupportedComponents job)
foreach(_comp ${libkazv_FIND_COMPONENTS})
if (NOT ";${libkazvSupportedComponents};" MATCHES "${_comp}")
set(libkazv_FOUND False)
set(libkazv_NOT_FOUND_MESSAGE "Unsupported component by libkazv: ${_comp}. Supported components: ${libkazvSupportedComponents}")
endif()
include("${CMAKE_CURRENT_LIST_DIR}/libkazv-${_comp}Config.cmake"
OPTIONAL RESULT_VARIABLE _compFound)
if ("${_compFound}" STREQUAL "NOTFOUND")
set(libkazv_${_comp}_FOUND False)
else()
set(libkazv_${_comp}_FOUND True)
endif()
if (libkazv_FIND_REQUIRED_${_comp})
if ("${_compFound}" STREQUAL "NOTFOUND")
set(libkazv_FOUND False)
set(libkazv_NOT_FOUND_MESSAGE "Missing component: ${_comp}")
endif()
endif()
endforeach()
set(CMAKE_MODULE_PATH ${_oldCmakeModulePath})

File Metadata

Mime Type
text/plain
Expires
Mon, Nov 25, 11:10 PM (1 d, 7 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
40107
Default Alt Text
libkazvConfig.cmake (1 KB)

Event Timeline