From fe9407ca337e8e2df69c7e8694cec00e5bd9e904 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Sun, 22 Feb 2026 09:47:30 -0500 Subject: [PATCH] refactor: move SECURITY.md -> docs/Security.md, install it to CMAKE_INSTALL_DOCDIR --- docs/CMakeLists.txt | 7 +++++++ SECURITY.md => docs/Security.md | 0 2 files changed, 7 insertions(+) rename SECURITY.md => docs/Security.md (100%) diff --git a/docs/CMakeLists.txt b/docs/CMakeLists.txt index 02d04a2aa..8a4b1a71e 100644 --- a/docs/CMakeLists.txt +++ b/docs/CMakeLists.txt @@ -24,3 +24,10 @@ if (DOXYGEN_FOUND) else() message(STATUS "Doxygen not found, skipping docs build") endif() + +# Show our documents in the IDE +add_custom_target(docs + SOURCES + Security.md +) +install(FILES Security.md DESTINATION ${CMAKE_INSTALL_DOCDIR}) diff --git a/SECURITY.md b/docs/Security.md similarity index 100% rename from SECURITY.md rename to docs/Security.md