From: Neal Gompa Date: Thu, 13 May 2010 23:26:30 +0000 (-0500) Subject: Fixed error in handling Lugaru's default Windows install prefix X-Git-Url: https://git.jsancho.org/?a=commitdiff_plain;h=1854db19a1dbf1a3a7b2f45893fbf540645f5c88;p=lugaru.git Fixed error in handling Lugaru's default Windows install prefix --- 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)