diff options
| author | Noah Misch <noah@leadboat.com> | 2014-07-14 14:07:21 -0400 |
|---|---|---|
| committer | Noah Misch <noah@leadboat.com> | 2014-07-14 14:07:21 -0400 |
| commit | 91f03ba5cf88b393bf2509f3f00dd00437a5bd54 (patch) | |
| tree | d857ab206a677c05716fc140dabe9221fa98d887 /src/tools/msvc/clean.bat | |
| parent | 52be3aae5bfe84346b7ce202eae3447a07dfc882 (diff) | |
| download | postgresql-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-x | src/tools/msvc/clean.bat | 2 |
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 |
