From: kosmirror <kos...@us...> - 2025-09-20 13:00:15
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via bf083e62190e1aaf20a66095ee265b0b721cc34c (commit) from 29147166323bb4cd5d5279c8b6fb17cc4128f65c (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit bf083e62190e1aaf20a66095ee265b0b721cc34c Author: QuzarDC <qu...@co...> Date: Fri Sep 19 00:17:10 2025 -0400 cmake: Add compatibility cmake files. We've recently changed the old `Dreamcast` to `kallistios` files. Providing passthrough wrappers + warning to aid compatibility. ----------------------------------------------------------------------- Summary of changes: utils/cmake/dreamcast.cmake | 2 ++ utils/cmake/dreamcast.toolchain.cmake | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 utils/cmake/dreamcast.cmake create mode 100644 utils/cmake/dreamcast.toolchain.cmake diff --git a/utils/cmake/dreamcast.cmake b/utils/cmake/dreamcast.cmake new file mode 100644 index 00000000..9c378737 --- /dev/null +++ b/utils/cmake/dreamcast.cmake @@ -0,0 +1,2 @@ +message(AUTHOR_WARNING "dreamcast.cmake is deprecated, please use kallistios.cmake") +include(kallistios) diff --git a/utils/cmake/dreamcast.toolchain.cmake b/utils/cmake/dreamcast.toolchain.cmake new file mode 100644 index 00000000..7fd78404 --- /dev/null +++ b/utils/cmake/dreamcast.toolchain.cmake @@ -0,0 +1,2 @@ +message(AUTHOR_WARNING "dreamcast.toolchain.cmake is deprecated, please use kallistios.toolchain.cmake") +include($ENV{KOS_BASE}/utils/cmake/kallistios.toolchain.cmake) hooks/post-receive -- A pseudo Operating System for the Dreamcast. |