Skip to content

Commit

Permalink
Fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmades committed Jul 15, 2024
1 parent 43b53fc commit 90a3dec
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions scripts/dependencies_installer/CanteraInstaller.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,13 @@ class CanteraInstaller {
"--jobs=$($this.ParallelJobs)",
"--directory=$($this.RepositoryDir)",
"prefix=$($this.InstallDir)",
"python_package='minimal'",
"system_fmt='y'",
"system_eigen='y'",
"system_yamlcpp='y'",
"system_sundials='y'",
"googletest='system'",
"f90_interface='n'",
"python_package=minimal",
"system_fmt=y",
"system_eigen=y",
"system_yamlcpp=y",
"system_sundials=y",
"googletest=system",
"f90_interface=n",
"boost_inc_dir=$($BoostIncDir)",
"sundials_include=$($SundialsInclude)",
"sundials_libdir=$($SundialsLibdir)",
Expand All @@ -131,7 +131,7 @@ class CanteraInstaller {
)

if ($Global:IsWindows) {
$SconsBuildOptions += "toolchain='mingw'" # default is "msvc"
$SconsBuildOptions += "toolchain=mingw" # default is "msvc"
}

scons build @SconsBuildOptions | Out-Host
Expand Down

0 comments on commit 90a3dec

Please sign in to comment.