mirror of
https://github.com/getml/sqlgen.git
synced 2026-01-01 15:09:46 -06:00
21 lines
377 B
CMake
21 lines
377 B
CMake
@PACKAGE_INIT@
|
|
|
|
set(SQLGEN_POSTGRES @SQLGEN_POSTGRES@)
|
|
set(SQLGEN_SQLITE3 @SQLGEN_SQLITE3@)
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/sqlgen-exports.cmake)
|
|
|
|
find_dependency(reflectcpp)
|
|
|
|
if(SQLGEN_POSTGRES)
|
|
find_dependency(PostgreSQL)
|
|
endif()
|
|
|
|
if(SQLGEN_SQLITE3)
|
|
find_dependency(unofficial-sqlite3)
|
|
endif()
|
|
|
|
check_required_components(sqlgen)
|