-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat/ndk-new-toolchain
- Loading branch information
Showing
53 changed files
with
2,465 additions
and
226 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Submodule glog
updated
92 files
Submodule libchewing
updated
207 files
Submodule libime-jyutping
updated
8 files
+58 −0 | .clang-format | |
+15 −0 | .codedocs | |
+99 −0 | .github/workflows/check.yml | |
+1 −1 | CMakeLists.txt | |
+4 −0 | Doxyfile.in | |
+12 −11 | po/ru.po | |
+4 −0 | src/engine/org.fcitx.Fcitx5.Addon.Jyutping.metainfo.xml.in | |
+18 −6 | src/libime/jyutping/jyutpingdictionary.cpp |
Submodule librime-lua
updated
18 files
+6 −4 | CMakeLists.txt | |
+717 −0 | contrib/librime.lua | |
+10 −1 | sample/lua/expand_translator.lua | |
+86 −0 | sample/lua/script_translator.lua | |
+89 −0 | sample/lua/table_translator.lua | |
+73 −0 | sample/lua/userdb.lua | |
+6 −0 | sample/luna_pinyin.custom.yaml | |
+4 −0 | src/lib/lua.cc | |
+2 −0 | src/lib/lua.h | |
+4 −0 | src/lua_gears.cc | |
+2 −0 | src/lua_gears.h | |
+33 −2 | src/modules.cc | |
+119 −42 | src/opencc.cc | |
+198 −0 | src/script_translator.cc | |
+245 −0 | src/table_translator.cc | |
+88 −0 | src/translator.h | |
+769 −138 | src/types.cc | |
+32 −27 | src/types_ext.cc |
Submodule librime-octagram
updated
5 files
+5 −1 | CMakeLists.txt | |
+5 −5 | src/gram_db.cc | |
+2 −2 | src/gram_db.h | |
+1 −1 | src/octagram.cc | |
+4 −4 | tools/build_grammar.cc |
Submodule librime-predict
added at
920bd4
Submodule marisa-trie
updated
3 files
+15 −0 | CMakeLists.txt | |
+6 −6 | marisa.pc.in | |
+12 −0 | tools/CMakeLists.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index b787631..1fc8cf4 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -402,6 +402,7 @@ add_custom_command ( | ||
COMMAND ${CMAKE_COMMAND} -E touch ${_glog_EMPTY_SOURCE} | ||
) | ||
|
||
+target_compile_options(glog_internal PRIVATE "-ffile-prefix-map=${CMAKE_SOURCE_DIR}=.") | ||
add_library (glog | ||
$<TARGET_OBJECTS:glog_internal> | ||
${_glog_EMPTY_SOURCE} |
Oops, something went wrong.