Skip to content

Commit

Permalink
build_ascent, change enable tests default to OFF (#1264)
Browse files Browse the repository at this point in the history
* build_ascent , change enable tests default to OFF

* build ascent extra echo info
  • Loading branch information
cyrush committed Mar 29, 2024
1 parent 08b8c0c commit 950c5f1
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion scripts/build_ascent/build_ascent.sh
Expand Up @@ -29,7 +29,7 @@ enable_python="${enable_python:=OFF}"
enable_openmp="${enable_openmp:=OFF}"
enable_mpi="${enable_mpi:=OFF}"
enable_find_mpi="${enable_find_mpi:=ON}"
enable_tests="${enable_tests:=ON}"
enable_tests="${enable_tests:=OFF}"
enable_verbose="${enable_verbose:=ON}"
build_jobs="${build_jobs:=6}"
build_config="${build_config:=Release}"
Expand Down Expand Up @@ -159,6 +159,15 @@ if [ ! -z ${FTN+x} ]; then
cmake_compiler_settings="${cmake_compiler_settings} -DCMAKE_Fortran_COMPILER:PATH=${FTN}"
fi

################
# print all build_ZZZ and enable_ZZZ options
################
echo "*** cmake_compiler_settings: ${cmake_compiler_settings}"
echo "*** build_ascent `enable` settings:"
set | grep enable_
echo "*** build_ascent `build` settings:"
set | grep build_

################
# Zlib
################
Expand Down

0 comments on commit 950c5f1

Please sign in to comment.