aboutsummaryrefslogtreecommitdiff
path: root/ports/sail/usage
diff options
context:
space:
mode:
authorDmitry Baryshev <dmitrymq@gmail.com>2020-12-12 01:17:43 +0300
committerGitHub <noreply@github.com>2020-12-11 14:17:43 -0800
commitc3e6d937e66098ad3114e94194efbe671849b4ab (patch)
tree5e798493413092e17ca1d25988ef22dcb66ff203 /ports/sail/usage
parente054fe2b20469c894b88be4ac466776f9f653954 (diff)
downloadvcpkg-c3e6d937e66098ad3114e94194efbe671849b4ab.tar.gz
vcpkg-c3e6d937e66098ad3114e94194efbe671849b4ab.zip
[sail] Add new port (#14925)
Diffstat (limited to 'ports/sail/usage')
-rw-r--r--ports/sail/usage14
1 files changed, 14 insertions, 0 deletions
diff --git a/ports/sail/usage b/ports/sail/usage
new file mode 100644
index 000000000..d117e68bc
--- /dev/null
+++ b/ports/sail/usage
@@ -0,0 +1,14 @@
+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.