mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
cmake: fix for PyCompile
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28226 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
620160071a
commit
42dc171666
@ -5,41 +5,6 @@
|
||||
# Copyright (c) 2008, 2009 Kornel Benko, <Kornel.Benko@berlin.de>
|
||||
#
|
||||
|
||||
project(lyx2lyx)
|
||||
set(_project "lyx2lyx")
|
||||
include(../PyCompile)
|
||||
|
||||
set(_project "scripts")
|
||||
#include(../PyCompile)
|
||||
|
||||
include(FindPythonInterp)
|
||||
|
||||
file(GLOB _lyx2lyx_py_files ${TOP_SRC_DIR}/lib/lyx2lyx/*.py)
|
||||
|
||||
set(py_compile ${TOP_SRC_DIR}/config/py-compile)
|
||||
|
||||
set(_generated)
|
||||
set(ENV{PYTHON} ${PYTHON_EXECUTABLE})
|
||||
|
||||
foreach(_orig_py ${_lyx2lyx_py_files})
|
||||
get_filename_component(_base_we_py ${_orig_py} NAME_WE)
|
||||
set(_compiled_py_ "${CMAKE_CURRENT_BINARY_DIR}/${_base_we_py}.pyc" "${CMAKE_CURRENT_BINARY_DIR}/${_base_we_py}.pyo")
|
||||
set(_copied_py "${CMAKE_CURRENT_BINARY_DIR}/${_base_we_py}.py")
|
||||
# we need that file really local first, due to the "py_compile"-script
|
||||
# because the creation will be in the directory of .py-file
|
||||
add_custom_command(
|
||||
OUTPUT ${_copied_py}
|
||||
PRE_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E copy "${_orig_py}" ${_copied_py}
|
||||
DEPENDS ${_orig_py}
|
||||
)
|
||||
add_custom_command(
|
||||
OUTPUT ${_compiled_py_}
|
||||
PRE_BUILD
|
||||
COMMAND ${py_compile} ${_copied_py}
|
||||
DEPENDS ${_copied_py}
|
||||
)
|
||||
SET_SOURCE_FILES_PROPERTIES(${_copied_py} ${_created_py_} GENERATED)
|
||||
install(FILES ${_compiled_py_} DESTINATION lyx2lyx)
|
||||
LIST(APPEND _generated ${_compiled_py_})
|
||||
endforeach(_orig_py)
|
||||
|
||||
ADD_CUSTOM_TARGET(lyx2lyx ALL DEPENDS ${_generated})
|
||||
|
@ -1,9 +1,10 @@
|
||||
# This file is part of LyX, the document processor.
|
||||
# Licence details can be found in the file COPYING.
|
||||
#
|
||||
# Copyright (c) 2009, Peter Kümmel, <syntheticpp@gmx.net>
|
||||
# , Kornel Benko, <Kornel.Benko@berlin.de>
|
||||
# Copyright (c) 2008, 2009 Peter Kümmel, <syntheticpp@gmx.net>
|
||||
# Copyright (c) 2008, 2009 Kornel Benko, <Kornel.Benko@berlin.de>
|
||||
#
|
||||
|
||||
set(_project "scripts")
|
||||
#include(../PyCompile)
|
||||
set(_project "lyx2lyx")
|
||||
include(../PyCompile)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user