16 lines
484 B
CMake
16 lines
484 B
CMake
include(CMakeFindDependencyMacro)
|
|
include(GNUInstallDirs)
|
|
|
|
find_dependency(PkgConfig REQUIRED)
|
|
pkg_check_modules(libconfig++ REQUIRED IMPORTED_TARGET libconfig++)
|
|
pkg_check_modules(curlpp REQUIRED IMPORTED_TARGET curlpp)
|
|
|
|
find_file(vsqlitepp NAMES "sqlite/connection.hpp"
|
|
PATHS ${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")
|