Skip to content

Commit 0b2596b

Browse files
authored
Merge branch 'master' into tensor_tests
2 parents c2c6775 + 32db68e commit 0b2596b

File tree

72 files changed

+6052
-656
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+6052
-656
lines changed

src/CMakeLists.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,18 @@ IF(BUILD_TESTING)
207207
ADD_DEFINITIONS(-DTEST_RESOURCE_ROOT_DIR="${SCIRUN_TEST_RESOURCE_DIR}" -DBUILD_TESTING)
208208
ENDIF()
209209

210+
#########################################################################
211+
# Configure Spdlog
212+
set (cxxfeaturelist ${CMAKE_CXX_COMPILE_FEATURES})
213+
214+
list (FIND cxxfeaturelist "cxx_thread_local" _index)
215+
if (${_index} GREATER -1)
216+
message("Found cxx_thread_local")
217+
else()
218+
message(WARNING "Did NOT find cxx_thread_local--turning off feature of spdlog")
219+
add_definitions(-DDISABLE_SPDLOG_TLS=1)
220+
endif()
221+
210222
#########################################################################
211223
# External projects
212224

src/Core/Algorithms/Legacy/Fields/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ SET(Core_Algorithms_Legacy_Fields_HEADERS
4747
FieldData/SetFieldData.h
4848
FieldData/SetFieldDataToConstantValue.h
4949
FieldData/SwapFieldDataWithMatrixEntriesAlgo.h
50-
#FieldData/SmoothVecFieldMedian.h
50+
FieldData/SmoothVecFieldMedianAlgo.h
5151
Mapping/BuildMappingMatrixAlgo.h
5252
DomainFields/GetDomainBoundaryAlgo.h
5353
MeshDerivatives/GetFieldBoundaryAlgo.h
@@ -149,7 +149,7 @@ SET(Core_Algorithms_Legacy_Fields_SRCS
149149
#FieldData/ConvertMappingMatrixToFieldData.cc
150150
FieldData/SetFieldData.cc
151151
FieldData/SetFieldDataToConstantValue.cc
152-
#FieldData/SmoothVecFieldMedian.cc
152+
FieldData/SmoothVecFieldMedianAlgo.cc
153153
#FilterFieldData/DilateFieldData.cc
154154
#FilterFieldData/ErodeFieldData.cc
155155
#FilterFieldData/TriSurfPhaseFilter.cc

src/Core/Algorithms/Legacy/Fields/FieldData/SmoothVecFieldMedian.cc

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

0 commit comments

Comments
 (0)