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 | e3dcaa477741dba922e3daf270ff2ecb42b5311c (patch) | |
tree | e09f3e1c465e3f63cf1231a3a64e684d6ba2eb79 /win32/scintilla.mak | |
parent | e06bdec7a8e31dbef56c7953083151b888f2f89c (diff) | |
download | scintilla-mirror-e3dcaa477741dba922e3daf270ff2ecb42b5311c.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 |