aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaDoc.html
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2018-03-08 18:22:00 +1100
committerNeil <nyamatongwe@gmail.com>2018-03-08 18:22:00 +1100
commit492076b58d09387ab9c2f60eaef364a6a65c4c28 (patch)
treeb8c2a9bbf974d5d588bae807b2a2d144116c7b6a /doc/ScintillaDoc.html
parentfede631dfa75dd8518bbde5b845a9da7d133ce24 (diff)
downloadscintilla-mirror-492076b58d09387ab9c2f60eaef364a6a65c4c28.tar.gz
Backport: Create static library libscintilla.a or libscintilla.lib on Windows.
Stop creating Lexers.a static library. Harmonize make files. Backport of changeset 6477:a65186aab9f9.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r--doc/ScintillaDoc.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 08b91778c..ba134cec4 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -8317,7 +8317,8 @@ EM_SETTARGETDEVICE
<h3>Static linking</h3>
<p>On Windows, Scintilla is normally used as a dynamic library as a .DLL file. If you want to
- link Scintilla directly into your application .EXE or .DLL file, then the
+ link Scintilla directly into your application .EXE or .DLL file, then you can link to the static library
+ bin/libscintilla.lib (or .a if using GCC) and call <code>Scintilla_RegisterClasses</code>. Otherwise, if using an IDE or other build system, then the
<code>STATIC_BUILD</code> preprocessor symbol should be defined and
<code>Scintilla_RegisterClasses</code> called. <code>STATIC_BUILD</code> prevents compiling the
<code>DllMain</code> function which will conflict with any <code>DllMain</code> defined in your