Skip to content
Snippets Groups Projects
Commit c081c51d authored by Philipp Rüssmann's avatar Philipp Rüssmann
Browse files

Enable -mcmodel medium -shared-intel for voronoi intel compile

parent c9047e7c
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,12 @@ if(CMAKE_Fortran_COMPILER_ID MATCHES Intel)
set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -r8")
endif()
# add special flags for voronoi code
if(COMPILE_VORONOI)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -mcmodel medium -shared-intel")
endif()
# for coverage report
if(ENABLE_COV)
message("Set profiling flags for test coverage report")
......
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