mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
17 lines
535 B
Bash
Executable File
17 lines
535 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
targetType=libso # Preferred library type
|
|
. ${WM_PROJECT_DIR:?}/wmake/scripts/AllwmakeParseArguments
|
|
. ${WM_PROJECT_DIR:?}/wmake/scripts/have_fftw
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
if have_fftw
|
|
then
|
|
wmake $targetType
|
|
else
|
|
echo "==> skip randomProcesses library (no FFTW)"
|
|
fi
|
|
|
|
#------------------------------------------------------------------------------
|