17 lines
487 B
CMake
17 lines
487 B
CMake
@PACKAGE_INIT@
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
# Include the version file
|
|
include("${CMAKE_CURRENT_LIST_DIR}/SimpleLibraryConfigVersion.cmake")
|
|
|
|
# Add the targets file
|
|
include("${CMAKE_CURRENT_LIST_DIR}/SimpleLibraryTargets.cmake")
|
|
|
|
# Set the include directories
|
|
set(SimpleLibrary_INCLUDE_DIRS "@PACKAGE_INCLUDE_INSTALL_DIR@")
|
|
|
|
# Provide the include directories to the caller
|
|
set(SimpleLibrary_INCLUDE_DIRS ${SimpleLibrary_INCLUDE_DIRS})
|
|
mark_as_advanced(SimpleLibrary_INCLUDE_DIRS)
|