mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 23:19:09 +08:00
7 lines
240 B
Plaintext
7 lines
240 B
Plaintext
|
The package liburing can be imported via CMake FindPkgConfig module:
|
||
|
|
||
|
include(FindPkgConfig)
|
||
|
pkg_check_modules(liburing REQUIRED IMPORTED_TARGET GLOBAL liburing>=2.0)
|
||
|
|
||
|
target_link_libraries(main PRIVATE PkgConfig::liburing)
|