blob: 7d1b8fb0c9816de1493e01498e244c16a368da53 (
plain)
1
2
3
4
5
6
7
8
9
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 shared library form of LLFIO:
target_link_libraries(main PUBLIC llfio::dl)
|