Skip to content
Open
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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*~
build/
Build/
BUILD/
CMakeLists.txt.user*
3 changes: 2 additions & 1 deletion Base/Testing/Cpp/voDataObjectTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ bool checkDataObjectType(const voDataObject& dataObject, const char* typeName)
return false;
}

if (!dataObject.data().canConvert<TYPE>())
QVariant temp = dataObject.data();
if (!temp.canConvert<TYPE>())
{
std::cerr << "Line " << __LINE__ << " - Problem with voDataObject::data()" << std::endl;
return false;
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ OPTION(WITH_COVERAGE "Enable/Disable coverage" OFF)
# Check compiler version
#
IF(CMAKE_COMPILER_IS_GNUCXX)
SET(REQUIRED_GNUCXX_VERSION "4.2.0")
SET(REQUIRED_GNUCXX_VERSION "4.0.0")
ctkFunctionGetGccVersion(${CMAKE_CXX_COMPILER} GCC_VERSION)
IF(${GCC_VERSION} VERSION_LESS ${REQUIRED_GNUCXX_VERSION})
MESSAGE(FATAL_ERROR "Gcc >= ${REQUIRED_GNUCXX_VERSION} is required ! Your current version is ${GCC_VERSION}.")
Expand Down
2 changes: 1 addition & 1 deletion SuperBuild.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ endif()

include(CMakeExternals/VTK.cmake)
include(CMakeExternals/QtPropertyBrowser.cmake)
include(CMakeExternals/VisomicsData.cmake)
#include(CMakeExternals/VisomicsData.cmake)
#include(CMakeExternals/CTK.cmake)

#-----------------------------------------------------------------------------
Expand Down