mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-12-13 04:38:24 -05:00
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 shared library form of LLFIO:
|
||
|
target_link_libraries(main PUBLIC llfio::dl)
|