The branch, master, has been updated. - Log -----------------------------------------------------------------
commit 6913a0c5f24fbf14e7f752b3788a7a767e21fab2 Author: Kornel Benko <[email protected]> Date: Fri Sep 21 12:48:30 2012 +0200 Use package name 'LyX' on Mac OS, 'lyx' otherwise diff --git a/CMakeLists.txt b/CMakeLists.txt index e3dfa48..ab80613 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,11 @@ cmake_minimum_required(VERSION 2.6.4) -set(LYX_PROJECT lyx) +if(APPLE) + set(LYX_PROJECT LyX) +else() + set(LYX_PROJECT lyx) +endif() set(LYX_CMAKE_DIR "development/cmake") set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/${LYX_CMAKE_DIR}/modules") ----------------------------------------------------------------------- Summary of changes: CMakeLists.txt | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) hooks/post-receive -- The LyX Source Repository
