From daa860d5740932dc884fee973de96bd43374b4bc Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 21 Feb 2020 09:36:21 +0100 Subject: [PATCH] CMake: set additional install variables on windows. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index b3057bc..346e4f1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,6 +24,8 @@ if (WIN32) # "Flat" install on windows. set( CMAKE_INSTALL_BINDIR "." ) set( CMAKE_INSTALL_DATADIR "." ) + set( CMAKE_INSTALL_SHAREDIR "." ) + set( CMAKE_INSTALL_MANDIR "." ) endif (WIN32) # --------------------------------