OSDN Git Service

Issue 30: Clone does not support UNC path to repository
[tortoisegit/TortoiseGitJp.git] / ext / scintilla / README
1 README for building of Scintilla and SciTE\r
2 \r
3 Scintilla can be built by itself.\r
4 To build SciTE, Scintilla must first be built.\r
5 \r
6 \r
7 *** GTK+/Linux version ***\r
8 \r
9 You must first have GTK+ 1.2 or later and GCC (3.1 or better) installed.\r
10 GTK+ 1.0x will not work and when it did it was very slow.\r
11 Other C++ compilers may work but may require tweaking the make file.\r
12 \r
13 To build Scintilla, use the makefile located in the scintilla/gtk directory\r
14         cd scintilla/gtk\r
15         make\r
16         cd ../..\r
17 \r
18 To build and install SciTE, use the makefile located in the scite/gtk directory\r
19         cd scite/gtk\r
20         make\r
21         make install\r
22 \r
23 This installs SciTE into $prefix/bin. The value of $prefix is determined from\r
24 the location of Gnome if it is installed. This is usually /usr if installed\r
25 with Linux or /usr/local if built from source. If Gnome is not installed\r
26 /usr/bin is used as the prefix. The prefix can be overridden on the command\r
27 line like "make prefix=/opt" but the same value should be used for both make\r
28 and make install as this location is compiled into the executable. The global\r
29 properties file is installed at $prefix/share/scite/SciTEGlobal.properties.\r
30 The language specific properties files are also installed into this directory.\r
31 \r
32 To build Scintilla for GTK+ 1 rather than the default GTK+ 2, define GTK1 on\r
33 the make command line:\r
34         make GTK1=1\r
35 \r
36 To remove SciTE\r
37         make uninstall\r
38 \r
39 To clean the object files which may be needed to change $prefix\r
40         make clean\r
41 \r
42 The current make file only supports static linking between SciTE and Scintilla.\r
43 \r
44 \r
45 *** Windows version ***\r
46 \r
47 A C++ compiler is required. Visual Studio .NET 2008 is the development system\r
48 used for most development although Mingw32 3.1 is also supported.\r
49 Borland did work but the command lines are now too long and the most recent\r
50 Borland version does not work. For older versions such as version 5.02, add the -l option.\r
51 \r
52 To build Scintilla, make in the scintilla/win32 directory\r
53                 cd scintilla\win32\r
54 GCC:            mingw32-make\r
55 VS .NET:        nmake -f scintilla.mak\r
56 VC++ 6: nmake -f scintilla_vc6.mak\r
57 Borland:        make -fscintilla.mak\r
58                 cd ..\..\r
59 \r
60 To build SciTE, use the makefiles located in the scite/win32 directory\r
61                 cd scite\win32\r
62 GCC:            mingw32-make\r
63 VS .NET:        nmake -f scite.mak\r
64 Borland:        make -fscite.mak\r
65 \r
66 An executable SciTE will now be in scite\bin.\r
67 \r
68 The Visual C++ 6.0 project (.dsp) files are no longer supported but are left\r
69 in the download for people that are prepared to update them.\r