aboutsummaryrefslogtreecommitdiffhomepage
path: root/README
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-09-27 04:02:57 +0000
committernyamatongwe <unknown>2003-09-27 04:02:57 +0000
commitf10f7c3b7279b9309500c54d9620cb43a7ba2c90 (patch)
tree7f816a83932e417966ee41237e26fe803f6e86ac /README
parente50871f92596e5632682904425b46cc5905d6514 (diff)
downloadscintilla-mirror-f10f7c3b7279b9309500c54d9620cb43a7ba2c90.tar.gz
Updated compilation comments to reflect current use of GTK+ 2,
Visual Studio .NET 2003, and Mingw 3.1.
Diffstat (limited to 'README')
-rw-r--r--README20
1 files changed, 9 insertions, 11 deletions
diff --git a/README b/README
index 2e3a5258c..ebf76e3a5 100644
--- a/README
+++ b/README
@@ -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