mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 01:03:19 +08:00
7 lines
201 B
Plaintext
7 lines
201 B
Plaintext
|
libgd can be imported via CMake FindPkgConfig module:
|
||
|
|
||
|
find_package(PkgConfig)
|
||
|
pkg_check_modules(LIBGD REQUIRED IMPORTED_TARGET gdlib)
|
||
|
|
||
|
target_link_libraries(main PRIVATE PkgConfig::LIBGD)
|