Skip to content

Commit

Permalink
Cleanup [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
gsjaardema committed May 16, 2023
1 parent 0f07566 commit 650e587
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
# We set the project name in a separate file so CTest scripts can use it.
INCLUDE(${CMAKE_CURRENT_SOURCE_DIR}/ProjectName.cmake)

SET(Seacas_ENABLE_CXX11_DEFAULT ON)
SET(Seacas_ENABLE_Zoltan_DEFAULT ON)
SET(TRIBITS_HIDE_DEPRECATED_INCLUDE_DIRECTORIES_OVERRIDE TRUE)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ manually as detailed in
| Variable | Values | Default | Description |
|-----------------|:---------------:|:-------:|-------------|
| INSTALL_PATH | path to install | pwd | Root of install path; default is current location |
| COMPILER | clang, gnu, intel, ibm | gnu | What compiler should be used for non-parallel build. Must have C++-14 capability. |
| COMPILER | clang, gnu, intel, ibm nvidia | gnu | What compiler should be used for non-parallel build. Must have C++-17 capability. |
| MPI | YES, NO | NO | If YES, then build parallel capability |
| FORCE | YES, NO | NO | Force downloading and building even if lib is already installed. |
| BUILD | YES, NO | YES | Should TPLs be built and installed. |
Expand Down
6 changes: 6 additions & 0 deletions TPL/compiler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,10 @@ else
export CC=xlc
export CXX=xlc
fi
if [ "$COMPILER" == "nvidia" ]
then
export CXX="nvcc -x c++"
expoort CC=nvcc
fi

fi

0 comments on commit 650e587

Please sign in to comment.