mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 20:32:00 +08:00
4ff2d52566
* [libsbml] Update, port fixes * [check] Follow VCPKG_LIBRARY_LINKAGE * [check] Don't install checkmk * [check] Burn-in dllimport * [libsbml] Devendor dirent * [libsbml] Burn-in library linkage * Finish * Fix typo * [libsbml] Shorten patch
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()
|