aboutsummaryrefslogtreecommitdiff
path: root/tools/boost_names.py
AgeCommit message (Collapse)AuthorFilesLines
2023-12-13Use SPDX-License-Identifier consistentlyDylan Baker1-13/+1
This replaces all of the Apache blurbs at the start of each file with an `# SPDX-License-Identifier: Apache-2.0` string. It also fixes existing uses to be consistent in capitalization, and to be placed above any copyright notices. This removes nearly 3000 lines of boilerplate from the project (only python files), which no developer cares to look at. SPDX is in common use, particularly in the Linux kernel, and is the recommended format for Meson's own `project(license: )` field
2023-04-11fix various spelling issuesJosh Soref1-2/+2
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
2021-06-29fix: Always explicitly set encoding for text files (fixes #8263)Daniel Mensinger1-3/+3
2020-10-12typing: fix mypy typing errorDaniel Mensinger1-3/+3
2020-09-08typing: fix code reviewDaniel Mensinger1-3/+3
2020-05-01boost: Only use usage-requirements defines (fixes #7046)Daniel Mensinger1-14/+42
2020-02-20boost: Rewrite boost_names.py generatorDaniel Mensinger1-143/+228
2019-11-07CI: add initial type annotation checkingMichael Hirsch, Ph.D1-1/+1
2019-04-29Fix unused variables warningsDaniel Mensinger1-1/+1
2017-10-25Boost: Add Python librariesNiklas Claesson1-0/+3
Fixes: #2507
2017-10-12Boost: Jamfile has two syntaxes for boost librariesNiklas Claesson1-0/+4
Fixes #2456
2017-10-01Boost: Improve search algorithmNiklas Claesson1-0/+180
The new implementation will correctly pick boost from 3 possible locations on windows and two locations on posix compatible OSs. The new search algorithm also differentiates between debug and release builds of Boost and multi or single threading builds. It was also decided to map "Meson modules" to Boost software libraries and not Boost modules since it there are a lot of options regarding linking. Some modules can even be used either as headers-only or with dynamic linking. This commit also fixes a bug that prevented header-only use on Windows. Fixes: #2274 #2239 #1803 #669