mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-14 07:19:01 +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()
|