Skip to content

Commit 109c3f2

Browse files
committed
Remove all mentions of CppUnit from build dependencies and instructions
Signed-off-by: Tim Straubinger <[email protected]>
1 parent ac56c24 commit 109c3f2

File tree

4 files changed

+1
-329
lines changed

4 files changed

+1
-329
lines changed

ci/install_macos.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,7 @@ LLVM_VERSION=$1
4545
if [ ! -z "$LLVM_VERSION" ]; then
4646
if [ "$LLVM_VERSION" == "latest" ]; then
4747
brew install llvm
48-
brew install cppunit
4948
else
5049
brew install llvm@$LLVM_VERSION
51-
brew install cppunit
5250
fi
5351
fi

cmake/FindCppUnit.cmake

Lines changed: 0 additions & 320 deletions
This file was deleted.

doc/build.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,6 @@ CMake | Cross-platform family of tools designed to help build software
257257
C++17 Compiler | Matching Houdini compiler and version | All |
258258
Boost | Components: iostreams | All |
259259
GoogleTest | A unit testing framework module for C++ | Unit Tests |
260-
CppUnit | A unit testing framework module for C++ | Unit Tests (AX) |
261260
GLFW | Simple API for OpenGL development | OpenVDB View |
262261
Doxygen | Documentation generation from C++ | Documentation |
263262
Log4cplus | An optional dependency for improved OpenVDB Logging | Optional (All) |
@@ -349,7 +348,6 @@ Boost | Components: iostreams
349348
ZLIB | Compression library for disk serialization compression | All |
350349
Blosc | Recommended dependency for improved disk compression | All* |
351350
GoogleTest | A unit testing framework module for C++ | Unit Tests |
352-
CppUnit | A unit testing framework module for C++ | Unit Tests (AX) |
353351
GLFW | Simple API for OpenGL development | OpenVDB View |
354352
Doxygen | Documentation generation from C++ | Documentation |
355353
OpenEXR | EXR serialization support | OpenVDB Render |

doc/dependencies.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,10 @@ OpenVDB View | Core Library dependencies, OpenGL, GLFW3, GLEW* | -
4444
OpenVDB Python | Core Library dependencies, Python, nanobind | NumPy
4545
OpenVDB AX | Core Library dependencies, LLVM | Bison, Flex
4646
NanoVDB | - | Core Library, CUDA, TBB, Blosc, ZLib
47-
OpenVDB UnitTests | Core Library dependencies, GoogleTest | CppUnit**
47+
OpenVDB UnitTests | Core Library dependencies, GoogleTest | -
4848
OpenVDB Documentation | Doxygen | -
4949

5050
- @b * GLEW is only required for building the vdb_view binary on Windows.
51-
- @b ** CppUnit is only required for building the AX unit tests.
5251
- @b Note - Bison and Flex are only required for re-generation of the AX
5352
grammar which is not typically necessary for the majority of users.
5453

@@ -73,7 +72,6 @@ Python | 3.10 | 3.11 | The python interpreter and libraries
7372
nanobind | 2.0.0 | 2.1.0 | C++/python bindings | Y | Y | https://nanobind.readthedocs.io
7473
NumPy | 1.23.0 | 1.26.0 | Scientific computing with Python | Y | Y | http://www.numpy.org
7574
GoogleTest | 1.10 | Latest | A unit testing framework module for C++ | Y | Y | https://github.com/google/googletest
76-
CppUnit | 1.10 | Latest | A unit testing framework module for C++ | N | Y | https://freedesktop.org/wiki/Software/cppunit
7775
Blosc | 1.17.0* | 1.17.0 | Recommended dependency for improved disk compression | Y | Y | https://github.com/Blosc/c-blosc/releases
7876
Log4cplus | 1.1.2 | Latest | An optional dependency for improved OpenVDB Logging | Y | Y | https://github.com/log4cplus/log4cplus
7977
libpng | - | Latest | Library for manipulating PNG images | Y | Y | http://www.libpng.org/pub/png/libpng.html
@@ -155,7 +153,6 @@ apt-get install libpng-dev # libpng
155153
apt-get install libopenexr-dev # OpenEXR
156154
apt-get install liblog4cplus-dev # Log4cplus
157155
apt-get install googletest # GoogleTest
158-
apt-get install libcppunit-dev # CppUnit
159156
# vdb_view
160157
apt-get install libglfw3-dev # GLFW
161158
# Documentation
@@ -185,7 +182,6 @@ brew install numpy # NumPy
185182
brew install nanobind # nanobind
186183
# Unit Tests
187184
brew install gtest # GoogleTest
188-
brew install cppunit # CppUnit
189185
# vdb_view
190186
brew install glfw # GLFW
191187
# vdb_render

0 commit comments

Comments
 (0)