Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Nektar
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
87
Issues
87
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
44
Merge Requests
44
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nektar
Nektar
Commits
73bc8644
Commit
73bc8644
authored
Mar 25, 2020
by
Jeremy Cohen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated MPI path fix for Windows
parent
8f5d79b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
cmake/ThirdPartyMPI.cmake
cmake/ThirdPartyMPI.cmake
+3
-1
No files found.
cmake/ThirdPartyMPI.cmake
View file @
73bc8644
...
@@ -30,9 +30,11 @@ IF( NEKTAR_USE_MPI )
...
@@ -30,9 +30,11 @@ IF( NEKTAR_USE_MPI )
# If we're using WIN32, mpiexec is likely to be in a directory with
# If we're using WIN32, mpiexec is likely to be in a directory with
# a space in the path so we need to quote the path so that it is run
# a space in the path so we need to quote the path so that it is run
# correctly by the Tester...
# correctly by the Tester...
# Update based on MPIEXEC_EXECUTABLE so that we don't get extra quotes
# added every time CMake is run!
MESSAGE
(
STATUS
"Found MPI Executable:
${
MPIEXEC
}
"
)
MESSAGE
(
STATUS
"Found MPI Executable:
${
MPIEXEC
}
"
)
IF
(
WIN32
)
IF
(
WIN32
)
SET
(
MPIEXEC
"
\\\"
${
MPIEXEC
}
\\\"
"
CACHE STRING
"MPI job launching command"
)
SET
(
MPIEXEC
"
\\\"
${
MPIEXEC
_EXECUTABLE
}
\\\"
"
CACHE STRING
"MPI job launching command"
)
MESSAGE
(
STATUS
"Updated MPIEXEC for Win32 platform:
${
MPIEXEC
}
"
)
MESSAGE
(
STATUS
"Updated MPIEXEC for Win32 platform:
${
MPIEXEC
}
"
)
ENDIF
()
ENDIF
()
ELSE
()
ELSE
()
...
...
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