vcpkg/ports/libsbml/libsbml-config.cmake
Lily Wang b049e49516
[libsbml] Update to 5.20.0 (#31149)
* [libsbml] Update to 5.20.0

* update version

* fix incorrect option

* update version

* install usage

* update version

* apply suggestions

* update version

* fix depends libxml2

* update version
2023-05-10 11:40:02 -07:00

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()