diff options
author | nyamatongwe <devnull@localhost> | 2001-08-02 13:59:13 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-08-02 13:59:13 +0000 |
commit | a728656ea243bb75a5ce6ec8cad57de2da50f72c (patch) | |
tree | 1a440c51f7b5953f12ff1d3c94d0282b2f9df268 /win32 | |
parent | 10c79c1da92024be5e767ec43cd620e85709ac8f (diff) | |
download | scintilla-mirror-a728656ea243bb75a5ce6ec8cad57de2da50f72c.tar.gz |
Added PropSet to all Scintilla builds as it is needed by the
autocompletion list for a string comparison.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/makefile | 2 | ||||
-rw-r--r-- | win32/scintilla.mak | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/win32/makefile b/win32/makefile index 67d24b035..8e11f1d4c 100644 --- a/win32/makefile +++ b/win32/makefile @@ -44,7 +44,7 @@ LEXOBJS=LexAda.o LexAVE.o LexConf.o LexCPP.o LexEiffel.o LexHTML.o \ SOBJS = ScintillaWin.o ScintillaBase.o Editor.o Document.o \ ContractionState.o CellBuffer.o CallTip.o \ ScintRes.o PlatWin.o KeyMap.o Indicator.o LineMarker.o RESearch.o \ - Style.o ViewStyle.o AutoComplete.o UniConversion.o + Style.o ViewStyle.o AutoComplete.o UniConversion.o PropSet.o $(COMPONENT): $(SOBJS) $(DLLWRAP) --target i386-mingw32 -o $@ $(SOBJS) $(LDFLAGS) -s --relocatable diff --git a/win32/scintilla.mak b/win32/scintilla.mak index d93398f2b..fd2f20854 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -96,6 +96,7 @@ SOBJS=\ $(DIR_O)\KeyMap.obj \ $(DIR_O)\LineMarker.obj \ $(DIR_O)\PlatWin.obj \ + $(DIR_O)\PropSet.obj \ $(DIR_O)\RESearch.obj \ $(DIR_O)\ScintillaBase.obj \ $(DIR_O)\ScintillaWin.obj \ |