2021-03-22 12:36:42 +00:00
|
|
|
if(BUILD_SHARED_LIBS)
|
|
|
|
set(_build_shared ON)
|
|
|
|
set(_build_static OFF)
|
|
|
|
else()
|
|
|
|
set(_build_shared OFF)
|
|
|
|
set(_build_static ON)
|
|
|
|
endif()
|
|
|
|
|
2022-04-19 14:59:12 +00:00
|
|
|
set (_openvdb_vdbprint ON)
|
|
|
|
if (${CMAKE_SYSTEM_PROCESSOR} MATCHES "arm")
|
|
|
|
# Build fails on raspberry pi due to missing link directive to latomic
|
|
|
|
# Let's hope it will be fixed soon.
|
|
|
|
set (_openvdb_vdbprint OFF)
|
|
|
|
endif ()
|
|
|
|
|
2021-03-22 12:36:42 +00:00
|
|
|
prusaslicer_add_cmake_project(OpenVDB
|
2022-01-25 10:23:28 +00:00
|
|
|
# 8.2 patched
|
2022-01-26 12:09:40 +00:00
|
|
|
URL https://github.com/tamasmeszaros/openvdb/archive/a68fd58d0e2b85f01adeb8b13d7555183ab10aa5.zip
|
|
|
|
URL_HASH SHA256=f353e7b99bd0cbfc27ac9082de51acf32a8bc0b3e21ff9661ecca6f205ec1d81
|
2021-03-22 13:35:49 +00:00
|
|
|
DEPENDS dep_TBB dep_Blosc dep_OpenEXR dep_Boost
|
2021-03-22 12:36:42 +00:00
|
|
|
CMAKE_ARGS
|
|
|
|
-DCMAKE_POSITION_INDEPENDENT_CODE=ON
|
|
|
|
-DOPENVDB_BUILD_PYTHON_MODULE=OFF
|
|
|
|
-DUSE_BLOSC=ON
|
|
|
|
-DOPENVDB_CORE_SHARED=${_build_shared}
|
|
|
|
-DOPENVDB_CORE_STATIC=${_build_static}
|
|
|
|
-DOPENVDB_ENABLE_RPATH:BOOL=OFF
|
|
|
|
-DTBB_STATIC=${_build_static}
|
2022-04-19 14:59:12 +00:00
|
|
|
-DOPENVDB_BUILD_VDB_PRINT=${_openvdb_vdbprint}
|
2021-03-22 12:36:42 +00:00
|
|
|
-DDISABLE_DEPENDENCY_VERSION_CHECKS=ON # Centos6 has old zlib
|
|
|
|
)
|
|
|
|
|
|
|
|
if (MSVC)
|
|
|
|
if (${DEP_DEBUG})
|
|
|
|
ExternalProject_Get_Property(dep_OpenVDB BINARY_DIR)
|
|
|
|
ExternalProject_Add_Step(dep_OpenVDB build_debug
|
|
|
|
DEPENDEES build
|
|
|
|
DEPENDERS install
|
|
|
|
COMMAND ${CMAKE_COMMAND} ../dep_OpenVDB -DOPENVDB_BUILD_VDB_PRINT=OFF
|
|
|
|
COMMAND msbuild /m /P:Configuration=Debug INSTALL.vcxproj
|
|
|
|
WORKING_DIRECTORY "${BINARY_DIR}"
|
|
|
|
)
|
|
|
|
endif ()
|
|
|
|
endif ()
|