From: ThorstenB Date: Sun, 22 Apr 2012 11:43:04 +0000 (+0200) Subject: Don't install man pages on Windows X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=01f2cbc33cb6d5473c9ae01cd9c842c5eb420c9b;p=flightgear.git Don't install man pages on Windows they are only useful on Linux (and maybe Mac?) --- diff --git a/man/CMakeLists.txt b/man/CMakeLists.txt index 6e979570b..66bc113fb 100644 --- a/man/CMakeLists.txt +++ b/man/CMakeLists.txt @@ -1,3 +1,7 @@ +if (MSVC) + # don't install man pages on Windows +else(MSVC) + if(${CMAKE_VERSION} VERSION_GREATER 2.8.4) # use official include provided by latest CMake include(GNUInstallDirs) @@ -27,3 +31,5 @@ foreach(man ${MANPAGES}) install(FILES ${PROJECT_BINARY_DIR}/man/${man} DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 COMPONENT doc) endforeach() + +endif(MSVC) \ No newline at end of file