Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .exemplar_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
a8a97fdec16bfd081aa1814402f13b6a20327046
07a42c8a3ace7b889d4d98df8f9ec3a4cf74887f
4 changes: 2 additions & 2 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
matrix_config: >
{
"gcc": [
{ "versions": ["15"],
{ "versions": ["16"],
"tests": [
{ "cxxversions": ["c++26"],
"tests": [
Expand All @@ -54,7 +54,7 @@ jobs:
}
]
},
{ "versions": ["14"],
{ "versions": ["15", "14"],
"tests": [
{ "cxxversions": ["c++26", "c++23"],
"tests": [{ "stdlibs": ["libstdc++"], "tests": ["Release.Default"]}]
Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,9 @@

# ignore vscode settings
.vscode

# ignore vim swap files
.swp

# ignore merge/patch backup files
.orig
3 changes: 1 addition & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
cmake_minimum_required(VERSION 3.30...4.3)

project(
beman.transform_view # CMake Project Name, which is also the name of the top-level
# targets (e.g., library, executable, etc.).
beman.transform_view
DESCRIPTION "A conditionally borrowed std::ranges::transform_view"
LANGUAGES CXX
VERSION 0.1.0
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ the project's dependencies, including GoogleTest.

Example commands:

```
```shell
cmake \
-B build \
-S . \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ You can disable building tests by setting CMake option `BEMAN_TRANSFORM_VIEW_BUI

| Compiler | Version | C++ Standards | Standard Library |
|------------|---------|---------------|-------------------|
| GCC | 15-14 | C++26, C++23 | libstdc++ |
| GCC | 16-14 | C++26, C++23 | libstdc++ |
| Clang | 22-19 | C++26, C++23 | libstdc++, libc++ |
| Clang | 18 | C++23 | libstdc++ |
| AppleClang | latest | C++26, C++23 | libc++ |
Expand Down
2 changes: 1 addition & 1 deletion infra/.beman_submodule
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[beman_submodule]
remote=https://github.com/bemanproject/infra.git
commit_hash=3a49dffbffbfd1c405ce36091dfc68ad02dd6965
commit_hash=1b14bad2cd2cf0e44d1aeb608557e0e35ce27eaa
4 changes: 2 additions & 2 deletions infra/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This repository is intended to be used as a beman-submodule in other Beman repos
#### `beman_install_library`

The CMake modules in this repository are intended to be used by Beman libraries. Use the
`beman_add_install_library_config()` function to install your library, along with header
`beman_install_library()` function to install your library, along with header
files, any metadata files, and a CMake config file for `find_package()` support.

```cmake
Expand All @@ -31,7 +31,7 @@ add_library(beman::something ALIAS beman.something)

# ... configure your target as needed ...

find_package(beman-install-library REQUIRED)
include(infra/cmake/beman-install-library.cmake)
beman_install_library(beman.something)
```

Expand Down
2 changes: 1 addition & 1 deletion infra/cmake/llvm-libc++-toolchain.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-License-Identifier: BSL-1.0
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

# This toolchain file is not meant to be used directly,
# but to be invoked by CMake preset and GitHub CI.
Expand Down
2 changes: 1 addition & 1 deletion infra/cmake/telemetry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ _ME="$(basename "${0}")"
_print_help() {
cat <<HEREDOC
Callback script to process CMake Insrumentation data
Callback script to process CMake Instrumentation data
https://cmake.org/cmake/help/latest/command/cmake_instrumentation.html
Usage:
Expand Down
Loading