From ba1712a40a4696a78899024d9f870517a783b051 Mon Sep 17 00:00:00 2001 From: Nicola Revelant Date: Sun, 15 Oct 2023 17:31:07 +0200 Subject: [PATCH] Rename man dir to doc --- CMakeLists.txt | 2 +- {man => doc}/CMakeLists.txt | 1 + {man => doc}/italian-draughts.1.scd | 0 {man => doc}/italian-draughts.5.scd | 0 4 files changed, 2 insertions(+), 1 deletion(-) rename {man => doc}/CMakeLists.txt (99%) rename {man => doc}/italian-draughts.1.scd (100%) rename {man => doc}/italian-draughts.5.scd (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index a71db1f..a5c4f69 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,7 +33,7 @@ else () include(GNUInstallDirs) # Compile and compress the manual pages - add_subdirectory(man) + add_subdirectory(doc) # Install target install(TARGETS ${PROJECT_NAME}) diff --git a/man/CMakeLists.txt b/doc/CMakeLists.txt similarity index 99% rename from man/CMakeLists.txt rename to doc/CMakeLists.txt index f690962..b0a51be 100644 --- a/man/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -1,4 +1,5 @@ # Converts manual pages using scdoc and then compresses them + # Creates a static library to represent the manual pages add_custom_target(ManualPages COMMENT "Compiling and compressing manual pages" diff --git a/man/italian-draughts.1.scd b/doc/italian-draughts.1.scd similarity index 100% rename from man/italian-draughts.1.scd rename to doc/italian-draughts.1.scd diff --git a/man/italian-draughts.5.scd b/doc/italian-draughts.5.scd similarity index 100% rename from man/italian-draughts.5.scd rename to doc/italian-draughts.5.scd