]> git.lyx.org Git - features.git/blob - development/cmake/src/tex2lyx/CMakeLists.txt
add copyright notice
[features.git] / development / cmake / src / tex2lyx / CMakeLists.txt
1 # This file is part of LyX, the document processor.
2 # Licence details can be found in the file COPYING.
3 #
4 # Copyright (c) 2006, Peter Kümmel, <syntheticpp@gmx.net>
5 #
6
7 project(tex2lyx)
8
9
10 set(LINKED_FILES
11         ../FloatList.C
12         ../Floating.C
13         ../counters.C
14         ../lyxlayout.h
15         ../lyxlayout.C
16         ../lyxtextclass.C
17         ../lyxtextclass.h
18         ../lyxlex.C
19         ../lyxlex_pimpl.C
20 )
21
22 set(tex2lyx_sources
23         ${LINKED_FILES}
24         boost.C 
25         context.C 
26         gettext.C 
27         lengthcommon.C 
28         lyxfont.C 
29         texparser.C 
30         tex2lyx.C 
31         preamble.C 
32         math.C 
33         table.C 
34         text.C 
35 )
36
37 set(tex2lyx_headers
38         Spacing.h 
39         context.h 
40         gettext.h 
41         lyxfont.h 
42         texparser.h 
43         tex2lyx.h 
44 )
45
46 add_executable(tex2lyx ${tex2lyx_SRCS})
47
48 target_link_libraries(tex2lyx  support )
49
50 project_source_group("${GROUP_CODE}" tex2lyx_sources tex2lyx_headers)
51