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