Skip to content
Snippets Groups Projects
Unverified Commit 54eb1126 authored by Lars Bilke's avatar Lars Bilke Committed by GitHub
Browse files

Merge pull request #2240 from bilke/gcc-partmesh

[CMake] Do not build partmesh on gcc 5.4.
parents 3c5af24a cc9fbb78
No related branches found
No related tags found
No related merge requests found
if(COMPILER_IS_GCC AND CMAKE_CXX_COMPILER_VERSION VERSION_EQUAL "5.4")
message(WARNING "gcc 5.4 segfaults when compiling partmesh!\n"
"Disabled partmesh compilation!")
return()
endif()
add_executable(partmesh PartitionMesh.cpp Metis.cpp NodeWiseMeshPartitioner.cpp)
set_target_properties(partmesh PROPERTIES FOLDER Utilities)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment