#!/bin/sh
cd "${0%/*}" || exit                                # Run from this directory
. ${WM_PROJECT_DIR:?}/wmake/scripts/wmakeFunctions  # Require wmake functions
#------------------------------------------------------------------------------

# This cleanup handles both cmake runTimePostProcessing and the dummy version

# Cleanup library files with .so version endings
rm -f $FOAM_LIBBIN/librunTimePostProcessing*

# Cleanup generated files - remove entire top-level
removeObjectDir "$PWD"

#------------------------------------------------------------------------------
