Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Nektar
Nektar
Commits
18e4c734
Commit
18e4c734
authored
Jul 03, 2017
by
David Moxey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix potential issue with VWI solver if IncNS solver not enabled
parent
473bce57
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
solvers/ADRSolver/CMakeLists.txt
solvers/ADRSolver/CMakeLists.txt
+1
-3
solvers/VortexWaveInteraction/CMakeLists.txt
solvers/VortexWaveInteraction/CMakeLists.txt
+2
-3
No files found.
solvers/ADRSolver/CMakeLists.txt
View file @
18e4c734
...
...
@@ -7,7 +7,7 @@ IF (NOT NEKTAR_BUILD_SOLVERS)
ENDIF
()
IF
(
NEKTAR_SOLVER_ADR
)
SET
(
ADRSolver
Source
ADD_SOLVER_EXECUTABLE
(
ADRSolver
SOURCES
./ADRSolver.cpp
./EquationSystems/Helmholtz.cpp
./EquationSystems/Laplace.cpp
...
...
@@ -22,8 +22,6 @@ IF( NEKTAR_SOLVER_ADR )
./EquationSystems/UnsteadyViscousBurgers.cpp
./EquationSystems/EigenValuesAdvection.cpp
)
ADD_SOLVER_EXECUTABLE
(
ADRSolver SOURCES
${
ADRSolverSource
}
)
# 1D discontinuous advection (weak DG/flux reconstruction)
ADD_NEKTAR_TEST
(
Advection1D_FRDG_GLL_LAGRANGE_SEM LENGTHY
)
ADD_NEKTAR_TEST
(
Advection1D_FRDG_GAUSS_LAGRANGE
)
...
...
solvers/VortexWaveInteraction/CMakeLists.txt
View file @
18e4c734
CMAKE_DEPENDENT_OPTION
(
NEKTAR_SOLVER_VORTEXWAVE
"Build the Vortex-Wave interaction solver."
ON
"NEKTAR_BUILD_SOLVERS"
OFF
)
"NEKTAR_BUILD_SOLVERS
;NEKTAR_SOLVER_INCNAVIERSTOKES
"
OFF
)
IF
(
NOT NEKTAR_BUILD_SOLVERS
)
IF
(
NOT NEKTAR_BUILD_SOLVERS
OR NOT NEKTAR_SOLVER_INCNAVIERSTOKES
)
SET
(
NEKTAR_SOLVER_VORTEXWAVE OFF CACHE INTERNAL
""
)
ENDIF
()
...
...
@@ -19,7 +19,6 @@ IF( NEKTAR_SOLVER_VORTEXWAVE )
../ADRSolver/EquationSystems/SteadyAdvectionDiffusion.cpp
../ADRSolver/EquationSystems/SteadyAdvectionDiffusionReaction.cpp
./CalcL2ToLinfPressure.cpp
./VortexWaveInteraction.h
./VortexWaveInteraction.cpp
$<TARGET_OBJECTS:IncNavierStokesSolver-obj>
)
...
...
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