mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 17:20:55 +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
41 lines
1.6 KiB
CMake
41 lines
1.6 KiB
CMake
# 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(doc)
|
|
|
|
#TODO: replace perl script with python, see scons:
|
|
# http://www.lyx.org/trac/browser/lyx-devel/trunk/development/scons/scons_utils.py
|
|
|
|
SET(_docs)
|
|
file(GLOB_RECURSE _rel_lyx_docs RELATIVE "${TOP_SRC_DIR}/lib/doc" "${TOP_SRC_DIR}/lib/doc/*.lyx" "${TOP_SRC_DIR}/lib/doc/*.txt")
|
|
|
|
foreach(_rel_doc ${_rel_lyx_docs})
|
|
if ("${_rel_doc}" MATCHES "/" )
|
|
string(REGEX REPLACE "/[^/]*$" "" _rel_dir_part ${_rel_doc})
|
|
else("${_rel_doc}" MATCHES "/")
|
|
set(_rel_dir_part ".")
|
|
endif("${_rel_doc}" MATCHES "/")
|
|
set(_created_doc "${CMAKE_CURRENT_BINARY_DIR}/${_rel_doc}")
|
|
get_filename_component(_doc_dir ${_created_doc} PATH)
|
|
file(MAKE_DIRECTORY ${_doc_dir})
|
|
#message("found relative file " ${_rel_doc})
|
|
#message("input ${TOP_SRC_DIR}/lib/doc/${_rel_doc}")
|
|
#message("output ${_created_doc}")
|
|
#message("rel_dir_part ${_rel_dir_part}")
|
|
SET_SOURCE_FILES_PROPERTIES(${_created_doc} GENERATED)
|
|
add_custom_command(
|
|
OUTPUT "${_created_doc}"
|
|
COMMAND perl "${CMAKE_SOURCE_DIR}/doc/ReplaceValues.pl" "LYX_USERDIR_VER=${LYX_USERDIR_VER}" "LYX_DIR_VER=${LYX_DIR_VER}" "${TOP_SRC_DIR}/lib/doc/${_rel_doc}" > "${_created_doc}"
|
|
DEPENDS "${TOP_SRC_DIR}/lib/doc/${_rel_doc}"
|
|
)
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${_rel_doc}" DESTINATION "doc/${_rel_dir_part}")
|
|
LIST(APPEND _docs "${_created_doc}")
|
|
endforeach(_rel_doc)
|
|
|
|
ADD_CUSTOM_TARGET(doc ALL DEPENDS ${_docs})
|
|
|