mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 11:16:55 +00:00
Added unconsidered header files to the list.
Globbed the tex2lyx directory to be more robust against changes. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28890 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c313084ef5
commit
44b15b8cf1
@ -1,49 +1,27 @@
|
||||
# This file is part of LyX, the document processor.
|
||||
# Licence details can be found in the file COPYING.
|
||||
#
|
||||
# Copyright (c) 2006, Peter Kümmel, <syntheticpp@gmx.net>
|
||||
# Copyright (c) 2006, 2008, 2009 Peter Kümmel, <syntheticpp@gmx.net>
|
||||
# Copyright (c) 2008, 2009 Kornel Benko, <Kornel.Benko@berlin.de>
|
||||
#
|
||||
|
||||
set(_tex2lyx tex2lyx${PROGRAM_SUFFIX})
|
||||
project(${_tex2lyx})
|
||||
|
||||
set(LINKED_sources
|
||||
${TOP_SRC_DIR}/src/insets/InsetLayout.cpp
|
||||
${TOP_SRC_DIR}/src/Encoding.cpp
|
||||
${TOP_SRC_DIR}/src/FloatList.cpp
|
||||
${TOP_SRC_DIR}/src/Floating.cpp
|
||||
${TOP_SRC_DIR}/src/Counters.cpp
|
||||
${TOP_SRC_DIR}/src/Layout.cpp
|
||||
${TOP_SRC_DIR}/src/LayoutModuleList.cpp
|
||||
${TOP_SRC_DIR}/src/TextClass.cpp
|
||||
${TOP_SRC_DIR}/src/Lexer.cpp
|
||||
${TOP_SRC_DIR}/src/lengthcommon.cpp
|
||||
${TOP_SRC_DIR}/src/Color.cpp
|
||||
${TOP_SRC_DIR}/src/ModuleList.cpp)
|
||||
# There is no header file lengthcommon.h
|
||||
set(LINKED_sources ${TOP_SRC_DIR}/src/lengthcommon.cpp)
|
||||
set(LINKED_headers)
|
||||
|
||||
set(LINKED_headers
|
||||
${TOP_SRC_DIR}/src/Layout.h
|
||||
${TOP_SRC_DIR}/src/LayoutModuleList.h
|
||||
${TOP_SRC_DIR}/src/TextClass.h)
|
||||
foreach(_src insets/InsetLayout Color Counters
|
||||
Encoding FloatList Floating
|
||||
Layout LayoutModuleList Lexer ModuleList TextClass)
|
||||
list(APPEND LINKED_sources ${TOP_SRC_DIR}/src/${_src}.cpp)
|
||||
list(APPEND LINKED_headers ${TOP_SRC_DIR}/src/${_src}.h)
|
||||
endforeach(_src)
|
||||
|
||||
set(tex2lyx_sources
|
||||
${TOP_SRC_DIR}/src/tex2lyx/boost.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/Context.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/Font.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/gettext.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/Parser.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/tex2lyx.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/preamble.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/math.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/table.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/text.cpp)
|
||||
file(GLOB tex2lyx_sources ${TOP_SRC_DIR}/src/tex2lyx/${LYX_CPP_FILES})
|
||||
|
||||
set(tex2lyx_headers
|
||||
${TOP_SRC_DIR}/src/tex2lyx/Spacing.h
|
||||
${TOP_SRC_DIR}/src/tex2lyx/Context.h
|
||||
${TOP_SRC_DIR}/src/tex2lyx/Font.h
|
||||
${TOP_SRC_DIR}/src/tex2lyx/Parser.h
|
||||
${TOP_SRC_DIR}/src/tex2lyx/tex2lyx.h)
|
||||
file(GLOB tex2lyx_headers ${TOP_SRC_DIR}/src/tex2lyx/${LYX_HPP_FILES})
|
||||
|
||||
include_directories(BEFORE ${TOP_SRC_DIR}/src/tex2lyx
|
||||
${TOP_SRC_DIR}/src/support/minizip ${ZLIB_INCLUDE_DIR})
|
||||
@ -77,5 +55,5 @@ endif()
|
||||
|
||||
project_source_group("${GROUP_CODE}" tex2lyx_sources tex2lyx_headers)
|
||||
|
||||
install(TARGETS ${_tex2lyx} DESTINATION bin PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|
||||
install(TARGETS ${_tex2lyx} DESTINATION bin)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user