Skip to content

Commit

Permalink
scripts: remove .obj and .mod files from windows fds build directorie…
Browse files Browse the repository at this point in the history
…s if windows hypre or sundials libraries are built
  • Loading branch information
gforney committed Nov 4, 2024
1 parent f92666e commit 1960ff8
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Build/Scripts/HYPRE/build_hypre.bat
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,17 @@ set HYPRE_HOME=%INSTALLDIR%
echo The Hypre library version %LIB_TAG% was built and installed in %INSTALLDIR%
echo.

echo ----------------------------------------------------------
echo ----------------------------------------------------------
echo removing .obj and .mod files from Windows fds build directories
echo ----------------------------------------------------------
echo ----------------------------------------------------------
echo.
for /D %%f in (%FIREMODELS%\fds\Build\*win*) do (
cd %%f
erase *.obj *.mod > Nul 2> Nul
)

cd %CURDIR%

goto eof
Expand Down
11 changes: 11 additions & 0 deletions Build/Scripts/SUNDIALS/build_sundials.bat
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,17 @@ echo.
echo The Sundials library version %LIB_TAG% was built and installed in %INSTALLDIR%
echo.

echo ----------------------------------------------------------
echo ----------------------------------------------------------
echo removing .obj and .mod files from Windows fds build directories
echo ----------------------------------------------------------
echo ----------------------------------------------------------
echo.
for /D %%f in (%FIREMODELS%\fds\Build\*win*) do (
cd %%f
erase *.obj *.mod > Nul 2> Nul
)

cd %CURDIR%

goto eof
Expand Down

0 comments on commit 1960ff8

Please sign in to comment.