diff options
| -rw-r--r-- | README | 20 | 
1 files changed, 9 insertions, 11 deletions
| @@ -6,7 +6,7 @@ To build SciTE, Scintilla must first be built.  *** GTK+/Linux version *** -You must first have GTK+ 1.2x and GCC (3.1 or better) installed. +You must first have GTK+ 1.2 or later and GCC (3.1 or better) installed.  GTK+ 1.0x will not work and when it did it was very slow.  Other C++ compilers may work but may require tweaking the make file. @@ -29,12 +29,9 @@ and make install as this location is compiled into the executable. The global  properties file is installed at $prefix/share/scite/SciTEGlobal.properties.  The language specific properties files are also installed into this directory. -If Gnome is installed then a .desktop file and icon are installed into the -correct Gnome places so that SciTE will be in the Gnome Applications menu. - -To build Scintilla for GTK+ 2, define GTK2 on the make command line: -	make GTK2=1 -SciTE does not support GTK+ 2. +To build Scintilla for GTK+ 1 rather than the default GTK+ 2, define GTK1 on +the make command line: +	make GTK1=1  To remove SciTE  	make uninstall @@ -47,13 +44,14 @@ The current make file only supports static linking between SciTE and Scintilla.  *** Windows version *** -A C++ compiler is required. Mingw32 GCC 3.2 is the compiler used -for most development although Visual C++ and Borland C++ are also supported. +A C++ compiler is required. Visual Studio .NET 2003 is the development system +used for most development although Mingw32 3.1 and Borland C++ are also +supported.  For older versions of Borland make such as version 5.02, add the -l option.  To build Scintilla, make in the scintilla/win32 directory  		cd scintilla\win32 -GCC:		make +GCC:		mingw32-make  VS .NET:	nmake -f scintilla.mak  VC++ 6:	nmake -f scintilla_vc6.mak  Borland: 	make -fscintilla.mak @@ -61,7 +59,7 @@ Borland: 	make -fscintilla.mak  To build SciTE, use the makefiles located in the scite/win32 directory  		cd scite\win32 -GCC:		make +GCC:		mingw32-make  VS .NET: 	nmake -f scite.mak  Borland:	make -fscite.mak | 
