|
From: Stefano A. <xa...@us...> - 2010-01-06 20:51:15
|
Module: performous Branch: master Commit: 00d40eb2b54917eeb55ddd6db0d67c70d6174392 Author: Xaldyz <xa...@us...> Date: Wed Jan 6 21:49:57 2010 +0100 Fixed path of locale dir under Windows --- CMakeLists.txt | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7f177ec..0515d33 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ find_package(Gettext) if(Gettext_FOUND) if(NOT LOCALE_DIR) if(WIN32) - SET(LOCALE_DIR "../locale") + SET(LOCALE_DIR "locale") elseif(APPLE) SET(LOCALE_DIR "share/locale") else()#other os |