Menu

Tree [983d35] default tip /
 History

Read Only access


File Date Author Commit
 bin 2014-10-07 Neil Neil [a41021] Removing old CVS artifacts.
 cocoa 2020-01-12 Neil Neil [713777] Readying 4.3.0 release.
 doc 2020-01-24 Neil Neil [92acd2] Fix line end whitespace and change edited date.
 gtk 2020-01-06 Zufu Liu Zufu Liu [59f3c5] Bug [#2135]. Prevent movement of candidate wind...
 include 2020-01-17 Neil Neil [b98f1f] Fix line end whitespace.
 lexers 2020-01-07 mitchell mitchell [6dd023] More synchronizing LongTerm3 with default.
 lexilla 2020-01-25 Neil Neil [7acfe8] Add version information resource to Lexilla.DLL...
 lexlib 2020-01-07 mitchell mitchell [6dd023] More synchronizing LongTerm3 with default.
 qt 2020-01-12 Neil Neil [713777] Readying 4.3.0 release.
 scripts 2020-01-25 Neil Neil [e01e84] Small simplification and spelling fix.
 src 2020-01-10 Zufu Liu Zufu Liu [375a05] Bug [#2132]. Only check for LS/PS/NEL when Unic...
 test 2020-01-05 mitchell mitchell [ddfe8e] Synchronizing LongTerm3 with default.
 win32 2020-01-28 Neil Neil [983d35] Break WndProc up into shorter, more focussed me...
 .hgeol 2019-03-31 Neil Neil [4de914] Backport: Undo change set 7357. Remove *.deps f...
 .hgignore 2020-01-21 Neil Neil [651de2] Feature [feature-requests:#1335] Hide some more...
 .hgtags 2020-01-15 Neil Neil [2ff0c9] Added tag rel-4-3-0 for changeset 7137777f9be8
 CONTRIBUTING 2016-09-18 Neil Neil [133c55] Updating documentation on contributing code.
 License.txt 2018-03-16 Neil Neil [d70937] Backport: Remove line-end white space.
 README 2018-03-13 mitchell mitchell [bd0bac] Update GTK+ version requirements.
 cppcheck.suppress 2020-01-05 mitchell mitchell [ddfe8e] Synchronizing LongTerm3 with default.
 delbin.bat 2018-04-12 Neil Neil [ebfc64] Backport: Don't show command as its noise when ...
 tgzsrc 2020-01-18 Neil Hodgson Neil Hodgson [14e6c7] Don't include lexilla.so in source archive.
 version.txt 2020-01-12 Neil Neil [713777] Readying 4.3.0 release.
 zipsrc.bat 2007-06-12 nyamatongwe nyamatongwe [9ddf26] Store OS X files in zips.

Read Me

README for building of Scintilla and SciTE

Scintilla can be built by itself.
To build SciTE, Scintilla must first be built.


*** GTK+/Linux version ***

You must first have GTK+ 2.24 or later and GCC (7.1 or better) installed.
Clang may be used by adding CLANG=1 to the make command line.
Other C++ compilers may work but may require tweaking the make file.
Either GTK+ 2.x or 3.x may be used with 2.x the default and 3.x
chosen with the make argument GTK3=1.

To build Scintilla, use the makefile located in the scintilla/gtk directory
	cd scintilla/gtk
	make
	cd ../..

To build and install SciTE, use the makefile located in the scite/gtk directory
	cd scite/gtk
	make
	sudo make install

This installs SciTE into $prefix/bin. The value of $prefix is determined from
the location of Gnome if it is installed. This is usually /usr if installed
with Linux or /usr/local if built from source. If Gnome is not installed
/usr/bin is used as the prefix. The prefix can be overridden on the command
line like "make prefix=/opt" but the same value should be used for both make
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.

To remove SciTE
	sudo make uninstall

To clean the object files which may be needed to change $prefix
	make clean

The current make file only supports static linking between SciTE and Scintilla.


*** Windows version ***

A C++ 17 compiler is required.
Visual Studio 2017 is the development system used for most development
although Mingw-w64 7.1 is also supported.

To build Scintilla, make in the scintilla/win32 directory
		cd scintilla\win32
GCC:		mingw32-make
Visual C++:	nmake -f scintilla.mak
		cd ..\..

To build SciTE, use the makefiles located in the scite/win32 directory
		cd scite\win32
GCC:		mingw32-make
Visual C++: 	nmake -f scite.mak

An executable SciTE will now be in scite/bin.

*** GTK+/Windows version ***

Mingw-w64 is known to work. Other compilers will probably not work.

Only Scintilla will build with GTK+ on Windows. SciTE will not work.

To build Scintilla, make in the scintilla/gtk directory
	cd scintilla\gtk
	mingw32-make

*** macOS Cocoa version ***

Xcode 9.2 or later may be used to build Scintilla on macOS.

There is no open source version of SciTE for macOS but there is a commercial
version available through the App Store.

To build Scintilla, run xcodebuild in the scintilla/cocoa/ScintillaFramework directory
        cd cocoa/ScintillaFramework
	xcodebuild

*** Qt version ***

See the qt/README file to build Scintilla with Qt.
MongoDB Logo MongoDB