mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
765e190753
Search for all possible files, since there is no POTFILES.in anymore in svn Use the PACKAGE-Value as the root of the .mo file (For now it will be LyX.mo) --line, and those below, will be ignored-- M development/cmake/po/CMakeLists.txt git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28365 a592a061-630c-0410-9148-cb99ea01b6c8
88 lines
3.4 KiB
CMake
Executable File
88 lines
3.4 KiB
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(po)
|
|
|
|
include_directories(${TOP_SRC_DIR}/po)
|
|
|
|
SET(_lyxname ${PACKAGE})
|
|
SET(_py_sources)
|
|
macro(add_gettext_python _par _dir)
|
|
file(GLOB _sources ${TOP_SRC_DIR}/${_dir}/${ARGN})
|
|
SET(_dst "${CMAKE_CURRENT_BINARY_DIR}/${_par}_l10n.pot")
|
|
ADD_CUSTOM_COMMAND(
|
|
OUTPUT "${_dst}"
|
|
PRE_BUILD
|
|
COMMAND python
|
|
ARGS "${TOP_SRC_DIR}/po/lyx_pot.py" -b "${TOP_SRC_DIR}" -o "${_dst}" -t ${_par} ${_sources}
|
|
DEPENDS ${_sources}
|
|
)
|
|
SET_SOURCE_FILES_PROPERTIES("${_dst}" GENERATED)
|
|
LIST(APPEND _py_sources "${_dst}")
|
|
endmacro(add_gettext_python)
|
|
|
|
SET_SOURCE_FILES_PROPERTIES("${CMAKE_CURRENT_BINARY_DIR}/${_lyxname}.cat.pot" GENERATED)
|
|
SET_SOURCE_FILES_PROPERTIES("${CMAKE_CURRENT_BINARY_DIR}/${_lyxname}.fmt.pot" GENERATED)
|
|
SET_SOURCE_FILES_PROPERTIES("${CMAKE_CURRENT_BINARY_DIR}/${_lyxname}.pot" GENERATED)
|
|
|
|
add_gettext_python(encodings lib encodings)
|
|
add_gettext_python(external lib external_templates)
|
|
add_gettext_python(formats lib configure.py)
|
|
add_gettext_python(languages lib languages)
|
|
add_gettext_python(layouts lib/layouts *.layouts *.inc *.module)
|
|
add_gettext_python(qt4 src/frontends/qt4/ui *.ui)
|
|
add_gettext_python(ui lib/ui *.ui *.inc)
|
|
|
|
FIND_PROGRAM(GETTEXT_XGETTEXT_EXECUTABLE xgettext)
|
|
FIND_PROGRAM(GETTEXT_MSGUNIQ_EXECUTABLE msguniq)
|
|
|
|
# TODO:
|
|
# We need here perl, because I don't know how
|
|
# to write the alternative for "cat" in python
|
|
# e.g. perl -e "\"while(<>){print;}\""
|
|
# But maybe Jose knows?
|
|
|
|
ADD_CUSTOM_COMMAND(
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${_lyxname}.cat.pot"
|
|
COMMAND perl
|
|
ARGS -e "\"while(<>){print;}\"" ${_py_sources} > "${CMAKE_CURRENT_BINARY_DIR}/${_lyxname}.cat.pot"
|
|
DEPENDS ${_py_sources}
|
|
)
|
|
|
|
ADD_CUSTOM_COMMAND(
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${_lyxname}.fmt.pot"
|
|
COMMAND ${GETTEXT_MSGUNIQ_EXECUTABLE}
|
|
ARGS -o "${CMAKE_CURRENT_BINARY_DIR}/${_lyxname}.fmt.pot" "${CMAKE_CURRENT_BINARY_DIR}/${_lyxname}.cat.pot"
|
|
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/${_lyxname}.cat.pot"
|
|
)
|
|
|
|
SET(_potfiles_dep)
|
|
|
|
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/POTFILES.in "")
|
|
foreach(_dir src src/frontends/qt4 src/insets src/mathed src/support src/tex2lyx)
|
|
file(GLOB _tmp_potfiles RELATIVE ${TOP_SRC_DIR} ${TOP_SRC_DIR}/${_dir}/*.cpp)
|
|
foreach(_f ${_tmp_potfiles})
|
|
LIST(APPEND _potfiles_dep "${TOP_SRC_DIR}/${_f}")
|
|
file(APPEND ${CMAKE_CURRENT_BINARY_DIR}/POTFILES.in "${_f}\n")
|
|
endforeach(_f)
|
|
endforeach(_dir)
|
|
|
|
ADD_CUSTOM_COMMAND(
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${_lyxname}.pot"
|
|
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_BINARY_DIR}/${_lyxname}.fmt.pot" "${CMAKE_CURRENT_BINARY_DIR}/${_lyxname}.pot"
|
|
COMMAND ${GETTEXT_XGETTEXT_EXECUTABLE}
|
|
ARGS --default-domain=${_lyxname} --directory=${TOP_SRC_DIR} --add-comments=TRANSLATORS: --language=C++ --join-existing --keyword=_ --keyword=N_ --keyword=B_ --keyword=qt_ --files-from="${CMAKE_CURRENT_BINARY_DIR}/POTFILES.in" --copyright-holder='LyX Developers' --msgid-bugs-address=lyx-devel@lists.lyx.org -o "${CMAKE_CURRENT_BINARY_DIR}/${_lyxname}.pot"
|
|
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/${_lyxname}.fmt.pot" ${_potfiles_dep}
|
|
)
|
|
|
|
file(GLOB LYX_PO_FILES ${TOP_SRC_DIR}/po/*.po)
|
|
|
|
GETTEXT_CREATE_TRANSLATIONS(${CMAKE_CURRENT_BINARY_DIR}/${_lyxname}.pot ALL ${LYX_PO_FILES})
|
|
|
|
# ADD_POFILES("lyx")
|
|
|