pineapple/externals/vcpkg/ports/liburing/usage
2022-07-23 03:01:36 +02:00

6 lines
241 B
Text
Executable file

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)