2
0
mirror of https://github.com/boostorg/align.git synced 2026-01-19 04:02:08 +00:00
Files
align/test/Jamfile
René Ferdinand Rivera Morell c692e40c73 Add support for modular build structure. (#20)
* Make the library modular usable.

* Switch to library requirements instead of source. As source puts extra source in install targets.

* Add requires-b2 check to top-level build file.

* Bump B2 require to 5.2

* Update copyright dates.

* Move inter-lib dependencies to a project variable and into the build targets.

* Adjust self dependencies as inter-lib deps no longer apply globally.

* Add Boost.ThrowExceptions transitive dep module.

* Need 22.04 for gcc-11.

* Use latest macOS for GHA.

* windows-2016 is no longer available for GHA.

* ubuntu-18.04 is no longer available for GHA.

* Use ubuntu-24 for gcc on GHA.

* ubuntu-18.04 is no longer available for GHA.

* Use latest clang version on latest ubuntu-24 for GHA.

* Need to instal gcc-9.

* Move include to target.

* Put back disabled CI compilers with hopefully fixed building to account for GHA system changes.

* Fix copy-paste error for cxxstd option.

* Fix to avoid unattended attempt at instal prompt.

* Undo many of the CI changes.
2025-06-26 17:01:59 +03:00

28 lines
777 B
Plaintext

# Copyright 2014-2015 Glen Joseph Fernandes
# (glenjofe@gmail.com)
#
# Distributed under the Boost Software License, Version 1.0.
# (http://www.boost.org/LICENSE_1_0.txt)
import testing ;
project : requirements <library>/boost/align//boost_align ;
run align_test.cpp ;
run align_overflow_test.cpp ;
run align_down_test.cpp ;
run align_down_integral_test.cpp ;
run align_up_test.cpp ;
run align_up_integral_test.cpp ;
run aligned_alloc_test.cpp ;
run aligned_allocator_test.cpp ;
run aligned_allocator_adaptor_test.cpp ;
run aligned_delete_test.cpp ;
run alignment_of_test.cpp ;
run assume_aligned_test.cpp ;
run is_aligned_test.cpp ;
run is_aligned_integral_test.cpp ;
compile aligned_allocator_incomplete_test.cpp ;
compile aligned_allocator_adaptor_incomplete_test.cpp ;