From 1854db19a1dbf1a3a7b2f45893fbf540645f5c88 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Thu, 13 May 2010 18:26:30 -0500 Subject: [PATCH] Fixed error in handling Lugaru's default Windows install prefix --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c93b56b..35aca86 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,11 +13,11 @@ endif(NOT CMAKE_BUILD_TYPE) if(NOT LUGARU_INSTALL_PREFIX) if(WIN32) - set(LUGARU_INSTALL_PREFIX C:\Lugaru CACHE PATH + set(LUGARU_INSTALL_PREFIX "C:/Lugaru" CACHE PATH "LUGARU_INSTALL_PREFIX: Install path prefix, prepended onto install directories." FORCE) else(WIN32) - set(LUGARU_INSTALL_PREFIX /usr/local/lugaru CACHE PATH + set(LUGARU_INSTALL_PREFIX "/usr/local/lugaru" CACHE PATH "CMAKE_INSTALL_PREFIX: Install path prefix, prepended onto install directories." FORCE) endif(WIN32) -- 2.39.2