diff options
| author | Neil <nyamatongwe@gmail.com> | 2015-02-22 08:57:07 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2015-02-22 08:57:07 +1100 |
| commit | 22aaa509e9f0c07c1d4123b9520d601042432f3e (patch) | |
| tree | 64fadbaabdd28eb886cbc11511dc565455800b15 /win32/scintilla.mak | |
| parent | cfb5dc2a800956f2edf34a9599d6e75a63e6cce6 (diff) | |
| download | scintilla-mirror-22aaa509e9f0c07c1d4123b9520d601042432f3e.tar.gz | |
Implement VK_HANJA for Korean on Windows.
Diffstat (limited to 'win32/scintilla.mak')
| -rw-r--r-- | win32/scintilla.mak | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/win32/scintilla.mak b/win32/scintilla.mak index 17fb3e2df..d200597e5 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -88,7 +88,8 @@ SHAREDOBJS=\ $(DIR_O)\Style.obj \ $(DIR_O)\UniConversion.obj \ $(DIR_O)\ViewStyle.obj \ - $(DIR_O)\XPM.obj + $(DIR_O)\XPM.obj \ + $(DIR_O)\HanjaDic.obj \ SOBJS=\ $(SHAREDOBJS) \ @@ -877,7 +878,8 @@ $(DIR_O)\ScintillaWin.obj: \ ../src/Editor.h \ ../src/AutoComplete.h \ ../src/ScintillaBase.h \ - PlatWin.h + PlatWin.h \ + HanjaDic.h $(DIR_O)\ScintillaWinL.obj: \ ScintillaWin.cxx \ ../include/Platform.h \ @@ -910,7 +912,8 @@ $(DIR_O)\ScintillaWinL.obj: \ ../src/Editor.h \ ../src/AutoComplete.h \ ../src/ScintillaBase.h \ - PlatWin.h + PlatWin.h \ + HanjaDic.h $(DIR_O)\ScintillaWinS.obj: \ ScintillaWin.cxx \ ../include/Platform.h \ @@ -943,7 +946,8 @@ $(DIR_O)\ScintillaWinS.obj: \ ../src/Editor.h \ ../src/AutoComplete.h \ ../src/ScintillaBase.h \ - PlatWin.h + PlatWin.h \ + HanjaDic.h $(DIR_O)\Selection.obj: \ ../src/Selection.cxx \ ../include/Platform.h \ @@ -983,3 +987,5 @@ $(DIR_O)\XPM.obj: \ ../src/XPM.cxx \ ../include/Platform.h \ ../src/XPM.h +$(DIR_O)\HanjaDic: \ + ./HanjaDic.h |
