summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2022-03-26 20:04:04 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2022-03-26 20:04:04 +0100
commit2b8f3a757a92caf66f2c380e296775ccbf6ebeaf (patch)
tree8c2f89e35596c7b6c696d6d772d7a6d93ed00b5a
parent9cf1afda624033b53054a29b931bdc1fd371916e (diff)
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
-rw-r--r--CMake/install.cmake15
1 files 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)