refactor: move SECURITY.md -> docs/Security.md, install it to CMAKE_INSTALL_DOCDIR

This commit is contained in:
sithlord48
2026-02-22 09:47:30 -05:00
committed by Chris Rizzitello
parent 9376c68739
commit fe9407ca33
2 changed files with 7 additions and 0 deletions

View File

@ -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})