2006-09-15 17:05:20 +00:00
|
|
|
|
# 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>
|
|
|
|
|
#
|
|
|
|
|
|
2006-06-11 11:57:25 +00:00
|
|
|
|
project(tex2lyx)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
set(LINKED_FILES
|
|
|
|
|
../FloatList.C
|
|
|
|
|
../Floating.C
|
|
|
|
|
../counters.C
|
|
|
|
|
../lyxlayout.h
|
|
|
|
|
../lyxlayout.C
|
|
|
|
|
../lyxtextclass.C
|
|
|
|
|
../lyxtextclass.h
|
|
|
|
|
../lyxlex.C
|
|
|
|
|
../lyxlex_pimpl.C
|
|
|
|
|
)
|
|
|
|
|
|
2006-09-03 23:50:16 +00:00
|
|
|
|
set(tex2lyx_sources
|
2006-06-11 11:57:25 +00:00
|
|
|
|
${LINKED_FILES}
|
|
|
|
|
boost.C
|
|
|
|
|
context.C
|
|
|
|
|
gettext.C
|
|
|
|
|
lengthcommon.C
|
|
|
|
|
lyxfont.C
|
|
|
|
|
texparser.C
|
|
|
|
|
tex2lyx.C
|
|
|
|
|
preamble.C
|
|
|
|
|
math.C
|
|
|
|
|
table.C
|
|
|
|
|
text.C
|
|
|
|
|
)
|
|
|
|
|
|
2006-09-03 23:50:16 +00:00
|
|
|
|
set(tex2lyx_headers
|
|
|
|
|
Spacing.h
|
|
|
|
|
context.h
|
|
|
|
|
gettext.h
|
|
|
|
|
lyxfont.h
|
|
|
|
|
texparser.h
|
|
|
|
|
tex2lyx.h
|
|
|
|
|
)
|
|
|
|
|
|
2006-06-11 11:57:25 +00:00
|
|
|
|
add_executable(tex2lyx ${tex2lyx_SRCS})
|
|
|
|
|
|
|
|
|
|
target_link_libraries(tex2lyx support )
|
|
|
|
|
|
2006-09-03 23:50:16 +00:00
|
|
|
|
project_source_group("${GROUP_CODE}" tex2lyx_sources tex2lyx_headers)
|
2006-06-11 11:57:25 +00:00
|
|
|
|
|