Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 604 Bytes

File metadata and controls

25 lines (17 loc) · 604 Bytes

Installing yail

Build and install

cmake --preset windows-release-vcpkg`
cmake --build cmake-build/build/windows-release-vcpkg` --target install

The default install prefix is cmake-build/install/windows-release-vcpkg. To change it, pass -DCMAKE_INSTALL_PREFIX=/your/path during configure.

CMake integration

After installing, add yail to your project:

find_package(yail CONFIG REQUIRED)
target_link_libraries(my_target PRIVATE yail::yail)

If you installed to a non-standard prefix, point CMake to it:

cmake -DCMAKE_PREFIX_PATH=/your/install/path ..