Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortamasmeszaros <meszaros.q@gmail.com>2019-11-13 17:55:37 +0300
committertamasmeszaros <meszaros.q@gmail.com>2019-11-13 17:55:37 +0300
commitd4d037792d086b009473eeb3e3bda20e60808f59 (patch)
tree472c415043fac6ab4a70ef7b8c48f2711025cc68 /cmake/modules
parent97811130a18e01ee8c4ae5e59f60918de53ee119 (diff)
Holes are now visible on slices in preview.
Diffstat (limited to 'cmake/modules')
-rw-r--r--cmake/modules/FindOpenVDB.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/modules/FindOpenVDB.cmake b/cmake/modules/FindOpenVDB.cmake
index dd4ff5b20..70bbe05f5 100644
--- a/cmake/modules/FindOpenVDB.cmake
+++ b/cmake/modules/FindOpenVDB.cmake
@@ -283,9 +283,9 @@ endif()
macro(just_fail msg)
set(OpenVDB_FOUND FALSE)
if(OpenVDB_FIND_REQUIRED)
- message(FATAL_ERROR msg)
+ message(FATAL_ERROR ${msg})
elseif(NOT OpenVDB_FIND_QUIETLY)
- message(ERROR msg)
+ message(WARNING ${msg})
endif()
return()
endmacro()