Skip to content
Snippets Groups Projects
Commit 7c4adfa3 authored by oliver.sander_at_tu-dresden.de's avatar oliver.sander_at_tu-dresden.de
Browse files

Move 2bcontact.cc to newly created directory 'src'

'src' is where Dune modules are expected to have these files.
parent 76386099
No related branches found
No related tags found
No related merge requests found
Pipeline #12488 failed
Changes in dune-contact v2.6.0
==============================
* There is now a subdirectory `src`, and some of the compilable source code
files have moved there. This makes `dune-contact` more consistent with
other Dune modules.
Changes in dune-contact v2.5.0
==============================
......
......@@ -13,13 +13,11 @@ dune_project()
add_subdirectory(doc)
add_subdirectory(dune)
add_subdirectory(src)
add_subdirectory(test)
dune_symlink_to_source_files(FILES resources)
set(programs "")
if(HAVE_AMIRAMESH)
list(APPEND programs 2bcontact)
endif()
if(HAVE_AMIRAMESH AND HAVE_IPOPT)
list(APPEND programs 1badaptmeasure 1bcontact het2bcontact 2bnonlincontact 2bmgnonlincontact)
endif()
......
File moved
set(programs "")
#if(HAVE_AMIRAMESH)
list(APPEND programs 2bcontact)
#endif()
foreach(_program ${programs})
add_executable(${_program} ${_program}.cc)
target_link_dune_default_libraries(${_program})
add_dune_amiramesh_flags(${_program})
add_dune_ipopt_flags(${_program})
add_dune_ug_flags(${_program})
add_dune_psurface_flags(${_program})
add_dune_mpi_flags(${_program})
target_compile_options(${_program} PRIVATE "-fpermissive")
endforeach()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment