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
6 changes: 6 additions & 0 deletions nanovdb/nanovdb/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -199,12 +199,14 @@ set(NANOVDB_INCLUDE_FILES

# NanoVDB cuda header files
set(NANOVDB_INCLUDE_CUDA_FILES
cuda/Buffer.h
cuda/DeviceBuffer.h
cuda/DeviceMesh.h
cuda/DeviceResource.h
cuda/DeviceStreamMap.h
cuda/GridHandle.cuh
cuda/NodeManager.cuh
cuda/PinnedResource.h
cuda/TempPool.h
cuda/UnifiedBuffer.h
)
Expand All @@ -220,6 +222,7 @@ set(NANOVDB_INCLUDE_MATH_FILES
math/DitherLUT.h
math/HDDA.h
math/Math.h
math/Proximity.h
math/Ray.h
math/SampleFromVoxels.h
math/Stencils.h
Expand Down Expand Up @@ -254,6 +257,7 @@ set(NANOVDB_INCLUDE_TOOLS_CUDA_FILES
tools/cuda/DilateGrid.cuh
tools/cuda/CoarsenGrid.cuh
tools/cuda/VoxelBlockManager.cuh
tools/cuda/MeshToGrid.cuh
)

# NanoVDB util header files
Expand Down Expand Up @@ -283,6 +287,7 @@ set(NANOVDB_INCLUDE_UTIL_FILES
util/Timer.h
util/Util.h
util/MorphologyHelpers.h
util/MaskPrefixSum.h
)

# NanoVDB util/cuda header files
Expand All @@ -305,6 +310,7 @@ set(NANOVDB_INCLUDE_UTIL_CUDA_FILES
util/cuda/MorphologyHelpers.cuh
util/cuda/DeviceGridTraits.cuh
util/cuda/Injection.cuh
util/cuda/Rasterization.cuh
)

add_library(nanovdb INTERFACE)
Expand Down
7 changes: 7 additions & 0 deletions pendingchanges/missinginstallheaders.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
NanoVDB:
Bug Fixes:
- Fixed six public headers missing from the install lists in nanovdb/CMakeLists.txt:
cuda/Buffer.h, cuda/PinnedResource.h, math/Proximity.h, tools/cuda/MeshToGrid.cuh,
util/MaskPrefixSum.h and util/cuda/Rasterization.cuh. Installed headers included two of
them, so including a header such as nanovdb/cuda/GridHandle.cuh from an installed
NanoVDB failed to compile.
Loading