remwharead/cmake/remwhareadConfig.cmake.in

15 lines
468 B
CMake

include(CMakeFindDependencyMacro)
include(GNUInstallDirs)
find_dependency(ICU COMPONENTS uc i18n REQUIRED)
find_depencency(Poco COMPONENTS Foundation Net NetSSL CONFIG REQUIRED)
find_file(vsqlitepp NAMES "sqlite/connection.hpp"
PATHS "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_INCLUDEDIR}")
if("${vsqlitepp}" STREQUAL "vsqlitepp-NOTFOUND")
message(FATAL_ERROR "Could not find vsqlite++.")
endif()
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")