mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 17:29:06 +08:00
b049e49516
* [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
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()
|