10 lines
274 B
CMake
10 lines
274 B
CMake
@PACKAGE_INIT@
|
|
|
|
# Avoid repeatedly including the targets
|
|
if(NOT TARGET foo::foo)
|
|
find_package(rapidfuzz REQUIRED)
|
|
# Provide path for scripts
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}")
|
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/fooTargs.cmake)
|
|
endif() |