diff options
author | Magnus Hagander | 2007-09-26 11:19:09 +0000 |
---|---|---|
committer | Magnus Hagander | 2007-09-26 11:19:09 +0000 |
commit | 149af068ff5e468961c6f400b636b40f7dc3ab9f (patch) | |
tree | 2d8ce2ca1382e1e6316179c768032df46509dfc4 | |
parent | d49b20fbe68fdc66795fe9588ebd510d52a5b9eb (diff) |
Properly pass -c parameter to ecpg when building regression tests.
Per Michael.
-rw-r--r-- | src/tools/msvc/ecpg_regression.proj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/ecpg_regression.proj b/src/tools/msvc/ecpg_regression.proj index 6634627f2b..a026c5433c 100644 --- a/src/tools/msvc/ecpg_regression.proj +++ b/src/tools/msvc/ecpg_regression.proj @@ -35,7 +35,7 @@ </CreateProperty> <!-- Run ECPG and the Visual C++ compiler on the files. Don't bother with dependency check between the steps --> - <Exec WorkingDirectory="%(Pgc.RelativeDir)" Command="$(OUTDIR)ecpg\ecpg -I ../../include --regression $(ECPGPARAM) -o %(Pgc.Filename).c %(Pgc.Filename).pgc" /> + <Exec WorkingDirectory="%(Pgc.RelativeDir)" Command="$(OUTDIR)ecpg\ecpg -c -I ../../include --regression $(ECPGPARAM) -o %(Pgc.Filename).c %(Pgc.Filename).pgc" /> <Exec WorkingDirectorY="%(Pgc.RelativeDir)" Command="cl /nologo %(Pgc.FileName).c /TC /MD$(DEBUGLIB) /DENABLE_THREAD_SAFETY /DWIN32 /DWIN32_ONLY_COMPILER /I. /I..\..\include /I..\..\..\libpq /I..\..\..\..\include /link /defaultlib:$(OUTDIR)libecpg\libecpg.lib /defaultlib:$(OUTDIR)libecpg_compat\libecpg_compat.lib /defaultlib:$(OUTDIR)libpgtypes\libpgtypes.lib" /> </Target> |