vcpkg/ports/llfio/usage-error-code-dynamic
Niall Douglas 03d35b0303
[Outcome] update to v2.2.0 release. (#17362)
* Outcome v2.2.0 release.

* LLFIO matching updated Outcome and its dependencies at https://github.com/microsoft/vcpkg/pull/17362.

Also update usage docs, because a user complained about their incompleteness.
2021-04-23 13:27:19 -07:00

11 lines
402 B
Plaintext

The package llfio provides two CMake targets:
find_package(llfio CONFIG REQUIRED)
- If you want the header-only form of LLFIO:
find_package(Threads REQUIRED)
target_link_libraries(main PUBLIC llfio::hl)
- If you want the shared library form of LLFIO with shared NT kernel error code category:
target_link_libraries(main PUBLIC llfio::dl llfio::ntkernel-error-category::dl)