15 lines
323 B
Plaintext
15 lines
323 B
Plaintext
# Init @ variables before doing anything else
|
|
@PACKAGE_INIT@
|
|
|
|
# Dependencies
|
|
include(CMakeFindDependencyMacro)
|
|
find_dependency(libdwarf REQUIRED)
|
|
|
|
# We cannot modify an existing IMPORT target
|
|
if(NOT TARGET assert::assert)
|
|
|
|
# import targets
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@package_name@-targets.cmake")
|
|
|
|
endif()
|