mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Delete solution cache file on clean, if it exists.
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
@echo off
|
@echo off
|
||||||
REM $PostgreSQL: pgsql/src/tools/msvc/clean.bat,v 1.16 2009/11/12 00:13:00 tgl Exp $
|
REM $PostgreSQL: pgsql/src/tools/msvc/clean.bat,v 1.17 2010/01/01 16:58:53 mha Exp $
|
||||||
|
|
||||||
set DIST=0
|
set DIST=0
|
||||||
if "%1"=="dist" set DIST=1
|
if "%1"=="dist" set DIST=1
|
||||||
@ -11,6 +11,7 @@ if exist debug rd /s /q debug
|
|||||||
if exist release rd /s /q release
|
if exist release rd /s /q release
|
||||||
for %%f in (*.vcproj) do del %%f
|
for %%f in (*.vcproj) do del %%f
|
||||||
if exist pgsql.sln del /q pgsql.sln
|
if exist pgsql.sln del /q pgsql.sln
|
||||||
|
if exist pgsql.sln.cache del /q pgsql.sln.cache
|
||||||
del /s /q src\bin\win32ver.rc 2> NUL
|
del /s /q src\bin\win32ver.rc 2> NUL
|
||||||
del /s /q src\interfaces\win32ver.rc 2> NUL
|
del /s /q src\interfaces\win32ver.rc 2> NUL
|
||||||
if exist src\backend\win32ver.rc del /q src\backend\win32ver.rc
|
if exist src\backend\win32ver.rc del /q src\backend\win32ver.rc
|
||||||
|
Reference in New Issue
Block a user