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