-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for modular build structure. #850
Closed
Closed
Changes from 21 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
83fe833
Make the library modular usable.
grafikrobot 17783d8
Sync from upstream.
grafikrobot 0efa853
Switch to library requirements instead of source. As source puts extr…
grafikrobot 26efc9f
Fix missing install targets.
grafikrobot b6fde8e
Sync from upstream.
grafikrobot 292cfb9
Sync from upstream.
grafikrobot 0847fc5
Replace relative docca refs with project based.
grafikrobot 98f4319
Add missing NO_LIB usage requirements.
grafikrobot 90dac0c
Add missing import-search for cconfig/predef checks.
grafikrobot 6901f9f
Add requires-b2 check to top-level build file.
grafikrobot c5b3c53
Bump B2 require to 5.2
grafikrobot ec58078
Sync from upstream.
grafikrobot 61b0ac0
Update copyright dates.
grafikrobot 682b843
Move inter-lib dependencies to a project variable and into the build …
grafikrobot 81be485
Sync from upstream.
grafikrobot c062190
Split b2 dependencies into public and private.
grafikrobot ff7a700
Sync from upstream.
grafikrobot 01e458e
Sync from upstream.
grafikrobot 8d8ef54
Sync from upstream.
grafikrobot 8a80c9f
Update build deps.
grafikrobot a0c6521
Sync from upstream.
grafikrobot ea2ecb8
Sync from upstream.
grafikrobot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,34 @@ | ||
# Copyright René Ferdinand Rivera Morell 2023-2024 | ||
# Distributed under the Boost Software License, Version 1.0. | ||
# (See accompanying file LICENSE_1_0.txt or copy at | ||
# http://www.boost.org/LICENSE_1_0.txt) | ||
|
||
require-b2 5.2 ; | ||
|
||
constant boost_dependencies : | ||
/boost/align//boost_align | ||
/boost/assert//boost_assert | ||
/boost/config//boost_config | ||
/boost/core//boost_core | ||
/boost/mp11//boost_mp11 | ||
/boost/optional//boost_optional | ||
/boost/static_assert//boost_static_assert | ||
/boost/system//boost_system | ||
/boost/type_traits//boost_type_traits | ||
/boost/variant2//boost_variant2 ; | ||
|
||
project /boost/url | ||
: common-requirements | ||
<include>include | ||
; | ||
|
||
explicit | ||
[ alias boost_url : build//boost_url ] | ||
[ alias url_sources : build//url_sources ] | ||
[ alias all : boost_url url_sources example test ] | ||
; | ||
|
||
call-if : boost-library url | ||
: install boost_url | ||
; | ||
|
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
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
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
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
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 |
---|---|---|
|
@@ -11,7 +11,6 @@ import testing ; | |
|
||
project | ||
: requirements | ||
$(c11-requires) | ||
<library>/boost/filesystem//boost_filesystem/<warnings>off | ||
<library>/boost/url//boost_url | ||
<source>../../extra/test_main.cpp | ||
|
@@ -52,7 +51,6 @@ local SOURCES = | |
segments_encoded_view.cpp | ||
segments_ref.cpp | ||
segments_view.cpp | ||
snippets.cpp | ||
static_url.cpp | ||
string_view.cpp | ||
url.cpp | ||
|
@@ -64,7 +62,6 @@ local SOURCES = | |
grammar/alnum_chars.cpp | ||
grammar/alpha_chars.cpp | ||
grammar/charset.cpp | ||
grammar/ci_string.cpp | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same.. Probably a merge misstep at some point in the past months. |
||
grammar/dec_octet_rule.cpp | ||
grammar/delim_rule.cpp | ||
grammar/digit_chars.cpp | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this a mistake?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably a merge misstep at some point in the past months.