Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Praetorius, Simon
dune-multimesh
Commits
b909d646
Commit
b909d646
authored
Nov 28, 2018
by
Praetorius, Simon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed cmake to prevent compiling of std::variant examples if no variant is available
parent
bc541924
Pipeline
#1478
canceled with stage
in 3 minutes and 41 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
+8
-5
src/CMakeLists.txt
src/CMakeLists.txt
+7
-4
src/phasefield4.cc
src/phasefield4.cc
+1
-1
No files found.
src/CMakeLists.txt
View file @
b909d646
...
...
@@ -10,11 +10,14 @@ target_link_dune_default_libraries("localrefinement")
add_executable
(
"uggrid"
uggrid.cc
)
target_link_dune_default_libraries
(
"uggrid"
)
add_executable
(
"multigridview"
multigridview.cc
)
target_link_dune_default_libraries
(
"multigridview"
)
if
(
DUNE_HAVE_CXX_VARIANT
)
add_executable
(
"multigridview"
multigridview.cc
)
target_link_dune_default_libraries
(
"multigridview"
)
add_executable
(
"hierarchiciterator"
hierarchiciterator.cc
)
target_link_dune_default_libraries
(
"hierarchiciterator"
)
endif
(
DUNE_HAVE_CXX_VARIANT
)
add_executable
(
"hierarchiciterator"
hierarchiciterator.cc
)
target_link_dune_default_libraries
(
"hierarchiciterator"
)
add_executable
(
"interpolate"
interpolate.cc
)
target_link_dune_default_libraries
(
"interpolate"
)
...
...
src/phasefield4.cc
View file @
b909d646
...
...
@@ -39,7 +39,7 @@
#include <dune/functions/gridfunctions/discreteglobalbasisfunction.hh>
#include "phasefield
3
.hh"
#include "phasefield
4
.hh"
using
namespace
Dune
;
using
namespace
Dune
::
Indices
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment