diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-17 16:29:12 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-17 16:29:12 +0100 |
commit | 9010c9defb81e2659af53decd811376aafd00d77 (patch) | |
tree | 815b4b5fe215c430abfd2b197448d10b73359022 | |
parent | ec9ee23f869f54ae4dccd0dff16fbbf890c299c0 (diff) |
add demumble, a demangling library
-rw-r--r-- | .gitmodules | 3 | ||||
-rw-r--r-- | CMakeLists.txt | 1 | ||||
m--------- | demumble | 0 |
3 files changed, 4 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules index fd4fc9fd..2e2520dd 100644 --- a/.gitmodules +++ b/.gitmodules @@ -25,3 +25,6 @@ [submodule "luajit"] path = external/luajit url = https://github.com/WohlSoft/LuaJIT.git +[submodule "demumble"] + path = demumble + url = https://github.com/sthalik/demumble diff --git a/CMakeLists.txt b/CMakeLists.txt index e9bee471..1f9a2a82 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -176,6 +176,7 @@ include_directories(SYSTEM "${_fm-json-include-dirs}" ) +add_subdirectory(demumble) add_subdirectory(src) add_subdirectory(serialize) add_subdirectory(loader) diff --git a/demumble b/demumble new file mode 160000 +Subproject d3e838b9f4ff995506024af51d43be161b98e23 |