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
18 lines
591 B
CMake
18 lines
591 B
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>
|
|
#
|
|
|
|
configure_file(${TOP_SRC_DIR}/lib/lyx2lyx/lyx2lyx_version.py.in
|
|
${CMAKE_CURRENT_BINARY_DIR}/lyx2lyx_version.py)
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/lyx2lyx_version.py DESTINATION lyx2lyx)
|
|
|
|
if (UNIX)
|
|
set(_project "lyx2lyx")
|
|
include(../PyCompile)
|
|
endif()
|
|
|
|
install(PROGRAMS ${TOP_SRC_DIR}/lib/lyx2lyx/lyx2lyx DESTINATION lyx2lyx)
|