-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [boost] Install usage file * Switch to target style Co-authored-by: nicole mazzuca <[email protected]>
- Loading branch information
1 parent
9ee0529
commit 4073d29
Showing
8 changed files
with
19 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
Source: boost-modular-build-helper | ||
Version: 1.74.0 | ||
Port-Version: 1 | ||
Build-Depends: boost-uninstall |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
The package boost is compatible with built-in CMake targets: | ||
|
||
find_package(Boost REQUIRED [COMPONENTS <libs>...]) | ||
target_link_libraries(main PRIVATE Boost::boost Boost::<lib1> Boost::<lib2> ...) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: boost-vcpkg-helpers | ||
Version: 7 | ||
Port-Version: 1 | ||
Port-Version: 2 | ||
Description: a set of vcpkg-internal scripts used to modularize boost | ||
Build-Depends: boost-uninstall |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
|
||
file( | ||
COPY ${CMAKE_CURRENT_LIST_DIR}/boost-modular-headers.cmake | ||
DESTINATION ${CURRENT_PACKAGES_DIR}/share/boost-vcpkg-helpers | ||
file(COPY | ||
${CMAKE_CURRENT_LIST_DIR}/boost-modular-headers.cmake | ||
${CMAKE_CURRENT_LIST_DIR}/usage | ||
DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} | ||
) | ||
|
||
set(VCPKG_POLICY_EMPTY_PACKAGE enabled) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
The package boost is compatible with built-in CMake targets: | ||
|
||
find_package(Boost REQUIRED [COMPONENTS <libs>...]) | ||
target_link_libraries(main PRIVATE Boost::boost Boost::<lib1> Boost::<lib2> ...) |