diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2024-03-12 21:09:42 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2024-03-12 21:27:37 +0100 |
commit | 24c4029c96fa04b3cb4f90fbb36dc5248dd39810 (patch) | |
tree | ca51727f97207117f335f0309c063ffd2f168f2d /src/core/CMakeLists.txt | |
parent | bb346f8c6c62655a6ef8fe4bc848d179258ce008 (diff) | |
download | weechat-24c4029c96fa04b3cb4f90fbb36dc5248dd39810.zip |
core: remove "wee-" prefix from source files in src/core and src/core/hook
Diffstat (limited to 'src/core/CMakeLists.txt')
-rw-r--r-- | src/core/CMakeLists.txt | 104 |
1 files changed, 52 insertions, 52 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 49438bce1..e6e1aadfb 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -21,58 +21,58 @@ set(LIB_CORE_SRC weechat.c weechat.h - wee-arraylist.c wee-arraylist.h - wee-backtrace.c wee-backtrace.h - wee-calc.c wee-calc.h - wee-command.c wee-command.h - wee-completion.c wee-completion.h - wee-config.c wee-config.h - wee-config-file.c wee-config-file.h - wee-crypto.c wee-crypto.h - wee-debug.c wee-debug.h - wee-dir.c wee-dir.h - wee-doc.c wee-doc.h - wee-eval.c wee-eval.h - wee-hashtable.c wee-hashtable.h - wee-hdata.c wee-hdata.h - wee-hook.c wee-hook.h - wee-infolist.c wee-infolist.h - wee-input.c wee-input.h - wee-list.c wee-list.h - wee-log.c wee-log.h - wee-network.c wee-network.h - wee-proxy.c wee-proxy.h - wee-secure.c wee-secure.h - wee-secure-buffer.c wee-secure-buffer.h - wee-secure-config.c wee-secure-config.h - wee-signal.c wee-signal.h - wee-string.c wee-string.h - wee-sys.c wee-sys.h - wee-upgrade.c wee-upgrade.h - wee-upgrade-file.c wee-upgrade-file.h - wee-url.c wee-url.h - wee-utf8.c wee-utf8.h - wee-util.c wee-util.h - wee-version.c wee-version.h - hook/wee-hook-command-run.c hook/wee-hook-command-run.h - hook/wee-hook-command.c hook/wee-hook-command.h - hook/wee-hook-completion.c hook/wee-hook-completion.h - hook/wee-hook-config.c hook/wee-hook-config.h - hook/wee-hook-connect.c hook/wee-hook-connect.h - hook/wee-hook-fd.c hook/wee-hook-fd.h - hook/wee-hook-focus.c hook/wee-hook-focus.h - hook/wee-hook-hdata.c hook/wee-hook-hdata.h - hook/wee-hook-hsignal.c hook/wee-hook-hsignal.h - hook/wee-hook-info-hashtable.c hook/wee-hook-info-hashtable.h - hook/wee-hook-info.c hook/wee-hook-info.h - hook/wee-hook-infolist.c hook/wee-hook-infolist.h - hook/wee-hook-line.c hook/wee-hook-line.h - hook/wee-hook-modifier.c hook/wee-hook-modifier.h - hook/wee-hook-print.c hook/wee-hook-print.h - hook/wee-hook-process.c hook/wee-hook-process.h - hook/wee-hook-signal.c hook/wee-hook-signal.h - hook/wee-hook-timer.c hook/wee-hook-timer.h - hook/wee-hook-url.c hook/wee-hook-url.h + core-arraylist.c core-arraylist.h + core-backtrace.c core-backtrace.h + core-calc.c core-calc.h + core-command.c core-command.h + core-completion.c core-completion.h + core-config.c core-config.h + core-config-file.c core-config-file.h + core-crypto.c core-crypto.h + core-debug.c core-debug.h + core-dir.c core-dir.h + core-doc.c core-doc.h + core-eval.c core-eval.h + core-hashtable.c core-hashtable.h + core-hdata.c core-hdata.h + core-hook.c core-hook.h + core-infolist.c core-infolist.h + core-input.c core-input.h + core-list.c core-list.h + core-log.c core-log.h + core-network.c core-network.h + core-proxy.c core-proxy.h + core-secure.c core-secure.h + core-secure-buffer.c core-secure-buffer.h + core-secure-config.c core-secure-config.h + core-signal.c core-signal.h + core-string.c core-string.h + core-sys.c core-sys.h + core-upgrade.c core-upgrade.h + core-upgrade-file.c core-upgrade-file.h + core-url.c core-url.h + core-utf8.c core-utf8.h + core-util.c core-util.h + core-version.c core-version.h + hook/hook-command-run.c hook/hook-command-run.h + hook/hook-command.c hook/hook-command.h + hook/hook-completion.c hook/hook-completion.h + hook/hook-config.c hook/hook-config.h + hook/hook-connect.c hook/hook-connect.h + hook/hook-fd.c hook/hook-fd.h + hook/hook-focus.c hook/hook-focus.h + hook/hook-hdata.c hook/hook-hdata.h + hook/hook-hsignal.c hook/hook-hsignal.h + hook/hook-info-hashtable.c hook/hook-info-hashtable.h + hook/hook-info.c hook/hook-info.h + hook/hook-infolist.c hook/hook-infolist.h + hook/hook-line.c hook/hook-line.h + hook/hook-modifier.c hook/hook-modifier.h + hook/hook-print.c hook/hook-print.h + hook/hook-process.c hook/hook-process.h + hook/hook-signal.c hook/hook-signal.h + hook/hook-timer.c hook/hook-timer.h + hook/hook-url.c hook/hook-url.h ) # Check for flock support |