mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 01:59:00 +08:00
03d35b0303
* 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.
11 lines
325 B
Plaintext
11 lines
325 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 static library form of LLFIO:
|
|
target_link_libraries(main PUBLIC llfio::sl)
|