mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 02:48:59 +08:00
df75e76ff4
* Fix static-or-shared patch * Don't build docs for debug * Fix dependencies * Fix tools fixup * Usage is via 'pkg_check_modules' * Move docs * Update versions
7 lines
216 B
Plaintext
7 lines
216 B
Plaintext
The package dpdk can be imported via CMake FindPkgConfig module:
|
|
|
|
find_package(PkgConfig)
|
|
pkg_check_modules(DPDK REQUIRED IMPORTED_TARGET libdpdk)
|
|
|
|
target_link_libraries(main PRIVATE PkgConfig::DPDK)
|