Skip to content

Commit

Permalink
Project import generated by Copybara.
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 06d5ac51dafd3d5a81fd11fe9b4c278cd02b3ad3
  • Loading branch information
Vertexwahn committed May 19, 2024
1 parent 620fb8a commit 1c4329c
Show file tree
Hide file tree
Showing 45 changed files with 1,347 additions and 222 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ You can use Flatland by invoking the following commands:
```shell
git clone https://github.com/Vertexwahn/FlatlandRT # clone the repository
cd FlatlandRT # change directory to cloned repository
cd devertexwahn # switch to the location where the WORKSPACE.bazel file is located
cd devertexwahn # switch to the location where the MODULE.bazel file is located
```

*Render a scene with Windows 10/11 x64 with Visual Studio 2019:*
Expand Down Expand Up @@ -133,11 +133,11 @@ Make sure that lcov is installed.
sudo apt install lcov
```

Go to the directory that contains the `WORKSPACE.bazel` file and execute:
Go to the directory that contains the `MODULE.bazel` file and execute:

```shell
./coverage.sh buchgr_remote_cache
xdg-open coverage_report/index.html
open coverage_report/index.html
```

#### Address Sanitizer
Expand Down Expand Up @@ -212,25 +212,25 @@ If you find any copyright or license violations or issues please let me know.

### Third party dependencies

* {fmt} (https://github.com/fmtlib/fmt) (see `third_party` folder)
* abseil (https://abseil.io/) (see `third_party` folder)
* Boost (https://www.boost.org/) (third party dependency) ([License](devertexwahn/flatland/LICENSES/boost/LICENSE))
* Catch2 (https://github.com/catchorg/Catch2) (see `third_party` folder)
* Eigen (see `third_party` folder)
* gflags (https://github.com/gflags/gflags/) (see `third_party` folder)
* glog (https://github.com/google/glog) (see `third_party` folder)
* Google Test (https://github.com/google/googletest) (see `third_party` folder)
* hypothesis (https://github.com/wjakob/hypothesis) (see `third_party` folder)
* Imath (see `third_party` folder)
* [libpng](/third_party/libpng-1.6.40) (http://www.libpng.org/pub/png/libpng.html) ([License](/third_party/libpng-1.6.40/LICENSE))
* LLVM toolchain for Bazel (see `third_party` folder)
* [OpenEXR](/third_party/openexr) (https://github.com/AcademySoftwareFoundation/openexr) ([License](/third_party/openexr/LICENSE.md))
* [libpng](/third_party/libpng-1.6.40) (http://www.libpng.org/pub/png/libpng.html) ([License](/third_party/libpng-1.6.40/LICENSE))
* [pcg-cpp](/third_party/pcg-cpp) (https://github.com/imneme/pcg-cpp/)
* [pugixml](/third_party/pugixml-1.13) (https://pugixml.org/, https://github.com/zeux/pugixml)
* [rules_boost](/third_party/rules_boost) (https://github.com/nelhage/rules_boost) ([License](/third_party/rules_boost/LICENSE))
* [rules_pkg-0.9.1](/third_party/rules_pkg)
* abseil (https://abseil.io/) (see `third_party` folder)
* gflags (https://github.com/gflags/gflags/) (see `third_party` folder)
* glog (https://github.com/google/glog) (see `third_party` folder)
* hypothesis (https://github.com/wjakob/hypothesis) (see `third_party` folder)
* yaml-cpp (https://github.com/jbeder/yaml-cpp) (third party dependency) ([License](devertexwahn/flatland/LICENSES/yaml-cpp/LICENSE))
* zlib (https://zlib.net/) ([License](devertexwahn/flatland/LICENSES/third_party/zlib-1.2.11/README))
* {fmt} (https://github.com/fmtlib/fmt) (see `third_party` folder)

### Artwork

Expand Down
2 changes: 1 addition & 1 deletion devertexwahn/.bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.1.1
7.1.2
3 changes: 2 additions & 1 deletion devertexwahn/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Ignore all bazel-* symlinks. There is no full list since this can change
# based on the name of the directory bazel is cloned into.
/bazel-*
/bazel-*
MODULE.bazel.lock
4 changes: 2 additions & 2 deletions devertexwahn/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ bazel_dep(name = "eigen", version = "3.4.0")
bazel_dep(name = "embree", version = "4.3.1")
bazel_dep(name = "flip", version = "1.3")
bazel_dep(name = "fmt", version = "10.2.1")
bazel_dep(name = "gazelle", version = "0.35.0")
bazel_dep(name = "gazelle", version = "0.36.0")
bazel_dep(name = "glog", version = "0.7.0")
bazel_dep(name = "hypothesis")
bazel_dep(name = "imath", version = "3.1.11")
bazel_dep(name = "libdeflate", version = "1.20.bcr.1")
bazel_dep(name = "libjpeg_turbo", version = "2.1.4")
bazel_dep(name = "libpng", version = "1.6.43")
bazel_dep(name = "libwebp", version = "1.3.2")
bazel_dep(name = "libwebp", version = "1.4.0")
bazel_dep(name = "nasm", version = "2.14.02")
bazel_dep(name = "nlohmann_json", version = "3.11.3")
bazel_dep(name = "openexr", version = "3.2.4")
Expand Down
15 changes: 15 additions & 0 deletions devertexwahn/ci/ubuntu-22.04-cppcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,21 @@ steps:
cppcheck --version
displayName: "Show Cppcheck version"
- script: |
cd devertexwahn
cppcheck core
displayName: "Cppcheck core"
- script: |
cd devertexwahn
cppcheck flatland
displayName: "Cppcheck flatland"
- script: |
cd devertexwahn
cppcheck math
displayName: "Cppcheck math"
- script: |
cd devertexwahn
Expand Down
2 changes: 1 addition & 1 deletion third_party/Catch2/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
endif()

project(Catch2
VERSION 3.5.4 # CML version placeholder, don't delete
VERSION 3.6.0 # CML version placeholder, don't delete
LANGUAGES CXX
# HOMEPAGE_URL is not supported until CMake version 3.12, which
# we do not target yet.
Expand Down
26 changes: 26 additions & 0 deletions third_party/Catch2/docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# Release notes
**Contents**<br>
[3.6.0](#360)<br>
[3.5.4](#354)<br>
[3.5.3](#353)<br>
[3.5.2](#352)<br>
Expand Down Expand Up @@ -62,6 +63,31 @@
[Even Older versions](#even-older-versions)<br>


## 3.6.0

### Fixes
* Fixed Windows ARM64 build by fixing the preprocessor condition guarding use `_umul128` intrinsic.
* Fixed Windows ARM64EC build by removing intrinsic pragma it does not understand. (#2858)
* Why doesn't the x64-emulation build mode understand x64 pragmas? Don't ask me, ask the MSVC guys.
* Fixed the JUnit reporter sometimes crashing when reporting a fatal error. (#1210, #2855)
* The binary will still exit, but through the original error, rather than secondary error inside the reporter.
* The underlying fix applies to all reporters, not just the JUnit one, but only JUnit was currently causing troubles.

### Improvements
* Disable `-Wnon-virtual-dtor` in Decomposer and Matchers (#2854)
* `precision` in floating point stringmakers defaults to `max_digits10`.
* This means that floating point values will be printed with enough precision to disambiguate any two floats.
* Column wrapping ignores ansi colour codes when calculating string width (#2833, #2849)
* This makes the output much more readable when the provided messages contain colour codes.

### Miscellaneous
* Conan support improvements
* `compatibility_cppstr` is set to False. (#2860)
* This means that Conan won't let you mix library and project with different C++ standard settings.
* The implementation library CMake target name through Conan is properly set to `Catch2::Catch2` (#2861)
* `SelfTest` target can be built through Bazel (#2857)


## 3.5.4

### Fixes
Expand Down
Loading

0 comments on commit 1c4329c

Please sign in to comment.