From c5627cd855219dbf008950d87a988019b6be7a30 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 10 Oct 2001 00:43:45 +0000 Subject: [PATCH] added wx*.dsp files git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11917 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- distrib/msw/tmake/makeall.bat | 6 +++++- distrib/msw/tmake/makeall.sh | 15 ++++++++++++++- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/distrib/msw/tmake/makeall.bat b/distrib/msw/tmake/makeall.bat index 7da6709cfa..4763cb4f71 100755 --- a/distrib/msw/tmake/makeall.bat +++ b/distrib/msw/tmake/makeall.bat @@ -40,8 +40,12 @@ rem for %%c in (b32 bcc dos g95 sc vc wat) %TM% -t %c% wxwin.pro -o %WXDIR%\src\ echo Generating for for Visual C++ 6.0 wxBase C++ (32 bits)... %tmakecmd% -t basevc wxwin.pro -o %WXDIR%\src\msw\makebase.vc +echo Generating for for Visual C++ 6.0 wxWindows.dsp +%tmakecmd% -t vc6msw wxwin.pro -o %WXDIR%\src\wxWindows.dsp +echo Generating for for Visual C++ 6.0 wxUniv.dsp +%tmakecmd% -t vc6univ wxwin.pro -o %WXDIR%\src\wxUniv.dsp echo Generating for for Visual C++ 6.0 wxBase.dsp -%tmakecmd% -t vc6base wxwin.pro -o %WXDIR%\wxBase.dsp +%tmakecmd% -t vc6base wxwin.pro -o %WXDIR%\src\wxBase.dsp echo Generating for Visual C++ 4.0... %tmakecmd% -t vc wxwin.pro -o %WXDIR%\src\msw\makefile.vc echo Generating for Borland C++ (32 bits)... diff --git a/distrib/msw/tmake/makeall.sh b/distrib/msw/tmake/makeall.sh index 1bf5a12b8d..afa29bdbad 100755 --- a/distrib/msw/tmake/makeall.sh +++ b/distrib/msw/tmake/makeall.sh @@ -13,7 +13,8 @@ # Assume we are in distrib/msw/tmake # topdir="../../.." -mswdir="$topdir/src/msw" +srcdir="$topdir/src" +mswdir="$srcdir/msw" for tname in `ls *.t` do @@ -42,6 +43,18 @@ do echo "Generating $mswdir/makefile.vc for Visual C++ 4.0..." tmake -t vc wxwin.pro -o $mswdir/makefile.vc;; + vc6msw.t) + echo "Generating $srcdir/wxWindows.dsp for Visual C++ 6.0..." + tmake -t vc6msw wxwin.pro -o $srcdir/wxWindows.dsp;; + + vc6base.t) + echo "Generating $srcdir/wxBase.dsp for Visual C++ 6.0..." + tmake -t vc6base wxwin.pro -o $srcdir/wxBase.dsp;; + + vc6univ.t) + echo "Generating $srcdir/wxUniv.dsp for Visual C++ 6.0..." + tmake -t vc6univ wxwin.pro -o $srcdir/wxUniv.dsp;; + wat.t) echo "Generating $mswdir/makefile.wat for Watcom C++..." tmake -t wat wxwin.pro -o $mswdir/makefile.wat;;