summaryrefslogtreecommitdiff
path: root/src/tools/msvc/clean.bat
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2014-07-14 14:07:21 -0400
committerNoah Misch <noah@leadboat.com>2014-07-14 14:07:21 -0400
commit91f03ba5cf88b393bf2509f3f00dd00437a5bd54 (patch)
treed857ab206a677c05716fc140dabe9221fa98d887 /src/tools/msvc/clean.bat
parent52be3aae5bfe84346b7ce202eae3447a07dfc882 (diff)
downloadpostgresql-91f03ba5cf88b393bf2509f3f00dd00437a5bd54.tar.gz
MSVC: Recognize PGFILEDESC in contrib and conversion_procs modules.
Achieve this by consistently using four-argument Solution::AddProject() calls. Remove ad hoc Makefile parsing made redundant by doing that. Michael Paquier and Noah Misch, reviewed by MauMau.
Diffstat (limited to 'src/tools/msvc/clean.bat')
-rwxr-xr-xsrc/tools/msvc/clean.bat2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/msvc/clean.bat b/src/tools/msvc/clean.bat
index e06838cc1e..4671f30e50 100755
--- a/src/tools/msvc/clean.bat
+++ b/src/tools/msvc/clean.bat
@@ -19,6 +19,8 @@ if exist pgsql.suo del /q /a:H pgsql.suo
del /s /q src\bin\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
+for /d %%f in (contrib\*) do if exist %%f\win32ver.rc del /q %%f\win32ver.rc
+for /d %%f in (src\backend\utils\mb\conversion_procs\*) do if exist %%f\win32ver.rc del /q %%f\win32ver.rc
REM Delete files created with GenerateFiles() in Solution.pm
if exist src\include\pg_config.h del /q src\include\pg_config.h