lyx_mirror/development/cmake/doc/ReplaceValues.cmake
Kornel Benko a68ef98103 Cmake doc creations: Setting environment PYTHONIOENCODING
This should force the python executable to use the desired encoding.
The command is moved to a wrapper script to be able to set the environment
at make-run-time.
2017-10-17 12:28:36 +02:00

26 lines
783 B
CMake

set(ENV{PYTHONIOENCODING} "utf-8")
# check if all needed variables are set
foreach(_v LYX_USERDIR_VER LYX_DIR_VER REL_DIR SOURCE CREATED LYX_PYTHON_EXECUTABLE)
if (NOT DEFINED ${_v})
message(FATAL_ERROR "${_v} not set")
else()
#message(STATUS "${_v}=${${_v}}")
endif()
endforeach()
execute_process(COMMAND ${LYX_PYTHON_EXECUTABLE} "${TOP_CMAKE_PATH}/doc/ReplaceValues.py"
"LYX_USERDIR_VER=${LYX_USERDIR_VER}"
"LYX_DIR_VER=${LYX_DIR_VER}"
"\\origin\ unavailable=\\origin\ /systemlyxdir/doc/${REL_DIR}"
"${TOP_SRC_DIR}/lib/doc/${SOURCE}"
OUTPUT_FILE "${CREATED}"
RESULT_VARIABLE _err
ERROR_VARIABLE lyxerr)
if(_err)
message(STATUS "_err = ${_err}")
message(STATUS "lyxerr = ${lyxerr}")
message(FATAL_ERROR "Conversion of ${SOURCE} failed")
endif()