]> git.lyx.org Git - features.git/blob - development/cmake/src/tex2lyx/CMakeLists.txt
Headers and .C files are now in The Golden Code folder
[features.git] / development / cmake / src / tex2lyx / CMakeLists.txt
1 project(tex2lyx)
2
3
4 set(LINKED_FILES
5         ../FloatList.C
6         ../Floating.C
7         ../counters.C
8         ../lyxlayout.h
9         ../lyxlayout.C
10         ../lyxtextclass.C
11         ../lyxtextclass.h
12         ../lyxlex.C
13         ../lyxlex_pimpl.C
14 )
15
16 set(tex2lyx_SRCS 
17         ${LINKED_FILES}
18         Spacing.h 
19         boost.C 
20         context.C 
21         context.h 
22         gettext.C 
23         gettext.h 
24         lengthcommon.C 
25         lyxfont.C 
26         lyxfont.h 
27         texparser.C 
28         texparser.h 
29         tex2lyx.C 
30         tex2lyx.h 
31         preamble.C 
32         math.C 
33         table.C 
34         text.C 
35 )
36
37 add_executable(tex2lyx ${tex2lyx_SRCS})
38
39 target_link_libraries(tex2lyx  support )
40
41 source_group("${CODE_GROUP_NAME}" FILES ${tex2lyx_SRCS})
42