blob: afe51dc16ad0a48f963d617f182368380af8463e (
plain)
1
2
3
4
5
6
7
8
9
10
|
set(_supported_components libodb sqlite pgsql)
foreach(_comp ${odb_FIND_COMPONENTS})
if(NOT ";${_supported_components};" MATCHES _comp)
set(odb_FOUND False)
set(odb_NOTFOUND_MESSAGE "Unsupported component: ${_comp}")
endif()
include("${CMAKE_CURRENT_LIST_DIR}/odb_${_comp}Config.cmake")
endforeach()
set(odb_FOUND True)
|