mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-15 14:28:09 +08:00
15 lines
386 B
Plaintext
15 lines
386 B
Plaintext
The package sail provides CMake targets:
|
|
|
|
C libraries:
|
|
|
|
find_package(Sail CONFIG REQUIRED)
|
|
target_link_libraries(main PRIVATE SAIL::sail)
|
|
|
|
C++ bindings:
|
|
|
|
find_package(Sail CONFIG REQUIRED)
|
|
target_link_libraries(main PRIVATE SAIL::sail-c++)
|
|
|
|
For dynamic builds, please also copy SAIL codecs (bin/sail) and their dependencies
|
|
into the application directory.
|