From: Abdelrazak Younes Date: Thu, 21 Dec 2006 09:52:58 +0000 (+0000) Subject: Fix hard-coded path for locales dir. X-Git-Tag: 1.6.10~11483 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=8eade97e3c7ff19d5a07b8c3c823f43c95acfc34;p=features.git Fix hard-coded path for locales dir. I am not sure about what the PROGRAM_SUFFIX should contain... git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16356 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/development/cmake/CMakeLists.txt b/development/cmake/CMakeLists.txt index 5bf885b1dc..8cc28e8f24 100644 --- a/development/cmake/CMakeLists.txt +++ b/development/cmake/CMakeLists.txt @@ -85,8 +85,8 @@ endif(WIN32) set(LYX_DIR "${CMAKE_SOURCE_DIR}/../../lib") set(TOP_SRCDIR "${CMAKE_SOURCE_DIR}/../..") -set(PROGRAM_SUFFIX "") -set(LOCALEDIR "") +set(PROGRAM_SUFFIX "${CMAKE_SOURCE_DIR}/bin") +set(LOCALEDIR "${CMAKE_SOURCE_DIR}/../../lib/po") message("----- LYX_DIR : ${LYX_DIR}") message("----- TOP_SRCDIR : ${TOP_SRCDIR}")