mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-18 21:07:51 +08:00
7 lines
214 B
CMake
7 lines
214 B
CMake
|
include(CMakeFindDependencyMacro)
|
||
|
find_dependency(libsbml-static CONFIG)
|
||
|
if(NOT TARGET libsbml)
|
||
|
add_library(libsbml INTERFACE IMPORTED)
|
||
|
target_link_libraries(libsbml INTERFACE libsbml-static)
|
||
|
endif()
|