STC is not a separate library anymore

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45415 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2007-04-12 00:38:48 +00:00
parent 99953df064
commit 26ee65c723
3 changed files with 19 additions and 30 deletions

View File

@@ -108,12 +108,12 @@ if [ ! $? = 0 ]; then error 2; fi
# cd -
echo ------------------
echo cd ../../contrib/build/stc
cd ../../contrib/build/stc
$WXWIN/build/msw/.mymake $BUILD_TYPE $@
if [ ! $? = 0 ]; then error 2; fi
cd -
# echo ------------------
# echo cd ../../contrib/build/stc
# cd ../../contrib/build/stc
# $WXWIN/build/msw/.mymake $BUILD_TYPE $@
# if [ ! $? = 0 ]; then error 2; fi
# cd -
# echo ------------------

View File

@@ -92,12 +92,12 @@ REM if %? != 0 goto done
REM cd -
echo ------------------
echo cd ..\..\contrib\build\stc
cd ..\..\contrib\build\stc
call %WXWIN%\build\msw\.mymake.btm %BUILD_TYPE% %$
if %? != 0 goto done
cd -
REM echo ------------------
REM echo cd ..\..\contrib\build\stc
REM cd ..\..\contrib\build\stc
REM call %WXWIN%\build\msw\.mymake.btm %BUILD_TYPE% %$
REM if %? != 0 goto done
REM cd -
REM echo ------------------

View File

@@ -136,22 +136,11 @@ place, then do the same for wxPython.
--with-zlib=builtin \
2. To build and install wxWidgets you could just use the "make"
command but there are a couple other libraries besides the main
wxWidgets libs that also need to be built so again I make a script
to do it all for me so I don't forget anything. This time it is
called ".make" (I use the leading "." so when I do ``rm -r *`` in
my build dir I don't lose my scripts too.) This is what it looks
like::
2. To build and install wxWidgets you just need to run "make" and
"make install" and the Makefile will take care of all the work for you::
make $* \
&& make -C contrib/src/stc $*
So you just use .make as if it where make, but don't forget to set
the execute bit on .make first!::
.make
.make install
make
make install
When it's done you should have an installed set of files under
/opt/wx/2.8 containing just wxWidgets. Now to use this version of
@@ -394,9 +383,9 @@ accordingly if you are using the bash shell.
selection of command-line flags as described above.
7. When that is all done it will have built the main wxWidgets DLLs
and also some of the contribs DLLs. There should be a ton of DLLs
and lots of lib files and other stuff in %WXDIR%\\lib\\vc_dll.
7. When that is all done it will have built the main wxWidgets DLLs.
There should be a ton of DLLs and lots of lib files and other
stuff in %WXDIR%\\lib\\vc_dll.
8. Building wxPython on Windows is very similar to doing it for the