7 lines
213 B
CMake
7 lines
213 B
CMake
include(CMakeFindDependencyMacro)
|
|
find_dependency(@name@ CONFIG)
|
|
if(NOT TARGET libsbml)
|
|
add_library(libsbml INTERFACE IMPORTED)
|
|
target_link_libraries(libsbml INTERFACE $<TARGET_NAME:@name@>)
|
|
endif()
|