[cmake] Use find_package over find_dependency in config.cmake.in to improve cmake version compatibility

This commit is contained in:
Nils Wentzell 2020-08-03 15:34:31 -04:00
parent 1eabf19570
commit 43720b8f8f
1 changed files with 1 additions and 2 deletions

View File

@ -15,8 +15,7 @@ set(@PROJECT_NAME@_GIT_HASH @PROJECT_GIT_HASH@ CACHE STRING "@PROJECT_NAME@ git
set(@PROJECT_NAME@_ROOT @CMAKE_INSTALL_PREFIX@ CACHE STRING "@PROJECT_NAME@ root directory")
## Find the target dependencies
#include(CMakeFindDependencyMacro)
#find_dependency(... HINTS @CMAKE_INSTALL_PREFIX@)
#find_package(... REQUIRED HINTS @CMAKE_INSTALL_PREFIX@)
# Include the exported targets of this project
include(@CMAKE_INSTALL_PREFIX@/lib/cmake/@PROJECT_NAME@/@PROJECT_NAME@-targets.cmake)