mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-15 09:43:31 +00:00
63f86623cc
The main differecies to trunk is: Project name branchlyx. This is so, to be able to install trunk and branch (rpm or debian) package simultaneously. As they do not share the same directories it is now easy. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@28878 a592a061-630c-0410-9148-cb99ea01b6c8
31 lines
940 B
CMake
Executable File
31 lines
940 B
CMake
Executable File
# This file is part of LyX, the document processor.
|
|
# Licence details can be found in the file COPYING.
|
|
#
|
|
# Copyright (c) 2008, 2009 Peter Kümmel, <syntheticpp@gmx.net>
|
|
# Copyright (c) 2008, 2009 Kornel Benko, <Kornel.Benko@berlin.de>
|
|
#
|
|
|
|
project(man)
|
|
|
|
SET(_manuals)
|
|
set(program_suffix ${PROGRAM_SUFFIX})
|
|
macro(add_manual _mansrc)
|
|
get_filename_component(_mandest ${_mansrc} NAME_WE)
|
|
SET(_created_manual "${CMAKE_CURRENT_BINARY_DIR}/${_mandest}${PROGRAM_SUFFIX}.1")
|
|
configure_file("${TOP_SRC_DIR}/${_mansrc}" ${_created_manual} @ONLY)
|
|
SET_SOURCE_FILES_PROPERTIES(${_created_manual} GENERATED)
|
|
LIST(APPEND _manuals ${_created_manual})
|
|
endmacro(add_manual)
|
|
|
|
set(real_pkgdatadir ${LYX_ABS_INSTALLED_DATADIR})
|
|
foreach(_mn lyx.1in src/client/lyxclient.man src/tex2lyx/tex2lyx.1)
|
|
add_manual(${_mn})
|
|
endforeach(_mn)
|
|
|
|
ADD_CUSTOM_TARGET(man ALL DEPENDS ${_manuals})
|
|
|
|
install(FILES ${_manuals} DESTINATION man/man1)
|
|
|
|
# ADD_MANUALS("lyx")
|
|
|