From 2b8f3a757a92caf66f2c380e296775ccbf6ebeaf Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Sat, 26 Mar 2022 20:04:04 +0100 Subject: [PATCH] CMake: Don't install man pages of game programs (issue #23) I decided not to install the man pages for consistency because we don't install the executable programs. The instructions are commented out only so they can be activated easily if this will be changed, i.e. if we decide to install the test/game programs in the future. Closes #23 --- CMake/install.cmake | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/CMake/install.cmake b/CMake/install.cmake index 4629b098a..bdd622d92 100644 --- a/CMake/install.cmake +++ b/CMake/install.cmake @@ -1,8 +1,8 @@ # -# Main CMakeLists.txt to build the FLTK project using CMake (www.cmake.org) -# Written by Michael Surette +# Installation support for building the FLTK project using CMake (www.cmake.org) +# Originally written by Michael Surette # -# Copyright 1998-2021 by Bill Spitzak and others. +# Copyright 1998-2022 by Bill Spitzak and others. # # This library is free software. Distribution and use rights are outlined in # the file "COPYING" which should have been included with this file. If this @@ -125,8 +125,11 @@ if (UNIX OR MSYS OR MINGW) INSTALL_MAN (fluid 1) INSTALL_MAN (fltk-config 1) INSTALL_MAN (fltk 3) - INSTALL_MAN (blocks 6) - INSTALL_MAN (checkers 6) - INSTALL_MAN (sudoku 6) + + # Don't (!) install man pages of games (GitHub issue #23) + + # INSTALL_MAN (blocks 6) + # INSTALL_MAN (checkers 6) + # INSTALL_MAN (sudoku 6) endif (UNIX OR MSYS OR MINGW)