of_cmake_config/install

14 lines
304 B
Plaintext
Raw Normal View History

2022-04-11 06:44:18 +00:00
#!/bin/bash
objDir=$WM_PROJECT_DIR/wmake
if [ -d $objDir ]
then
chmod +x ./ofCmakeConfig
2022-08-30 07:11:04 +00:00
chmod +x ./occ
2022-08-28 16:10:53 +00:00
rm -f $objDir/ofCmakeConfig $objDir/occ
cp ofCmakeConfig occ wmakelog2cmakelists.py $objDir/
2022-04-11 06:44:18 +00:00
echo "installed ofCmakeConfig"
else
echo "please active OpenFOAM environment"
2022-08-30 07:11:04 +00:00
fi