mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-12-12 01:28:24 -05:00
11 lines
402 B
Plaintext
Executable File
11 lines
402 B
Plaintext
Executable File
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)
|