diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/vcpkg-boost/usage.in | |
Diffstat (limited to 'vcpkg/ports/vcpkg-boost/usage.in')
| -rw-r--r-- | vcpkg/ports/vcpkg-boost/usage.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vcpkg/ports/vcpkg-boost/usage.in b/vcpkg/ports/vcpkg-boost/usage.in new file mode 100644 index 0000000..929ed24 --- /dev/null +++ b/vcpkg/ports/vcpkg-boost/usage.in @@ -0,0 +1,9 @@ +The package @PORT@ is compatible with built-in CMake targets of FindBoost.cmake:
+
+ find_package(Boost REQUIRED COMPONENTS @BOOST_PORT_NAME@)
+ target_link_libraries(main PRIVATE Boost::@BOOST_PORT_NAME@)
+
+or the generated cmake configs via:
+
+ find_package(@PORT_UNDERSCORE@ REQUIRED CONFIG)
+ target_link_libraries(main PRIVATE Boost::@BOOST_PORT_NAME@)
|