diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/llfio/usage-error-code-static | |
Diffstat (limited to 'vcpkg/ports/llfio/usage-error-code-static')
| -rw-r--r-- | vcpkg/ports/llfio/usage-error-code-static | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vcpkg/ports/llfio/usage-error-code-static b/vcpkg/ports/llfio/usage-error-code-static new file mode 100644 index 0000000..935e910 --- /dev/null +++ b/vcpkg/ports/llfio/usage-error-code-static @@ -0,0 +1,10 @@ +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 static library form of LLFIO with static NT kernel error code category:
+ target_link_libraries(main PUBLIC llfio::sl llfio::ntkernel-error-category::sl)
|