]> git.lyx.org Git - lyx.git/blob - development/cmake/src/frontends/controllers/CMakeLists.txt
8bd60d65a7cd9682900a611159327c9c8e83de81
[lyx.git] / development / cmake / src / frontends / controllers / CMakeLists.txt
1 project(controllers)
2
3 set(controllers_sources
4         Dialog.C
5         Dialog.h
6         Kernel.C
7         Kernel.h
8         biblio.C
9         biblio.h
10         character.C
11         character.h
12         frnt_lang.C
13         frnt_lang.h
14         tex_helpers.C
15         tex_helpers.h
16         BCView.h
17         BCView.C
18         ButtonController.C
19         ButtonController.h
20         ButtonPolicies.C
21         ButtonPolicies.h
22         ControlAboutlyx.C
23         ControlAboutlyx.h
24         ControlBibtex.C
25         ControlBibtex.h
26         ControlBox.C
27         ControlBox.h
28         ControlBranch.C
29         ControlBranch.h
30         ControlCharacter.C
31         ControlCharacter.h
32         ControlChanges.C
33         ControlChanges.h
34         ControlCitation.C
35         ControlCitation.h
36         ControlCommand.C
37         ControlCommand.h
38         ControlCommandBuffer.C
39         ControlCommandBuffer.h
40         ControlDocument.C
41         ControlDocument.h
42         ControlErrorList.C
43         ControlErrorList.h
44         ControlERT.C
45         ControlERT.h
46         ControlExternal.C
47         ControlExternal.h
48         ControlFloat.C
49         ControlFloat.h
50         ControlGraphics.C
51         ControlGraphics.h
52         ControlInclude.C
53         ControlInclude.h
54         ControlLog.C
55         ControlLog.h
56         ControlViewSource.C
57         ControlViewSource.h
58         ControlMath.C
59         ControlMath.h
60         ControlNote.C
61         ControlNote.h
62         ControlParagraph.C
63         ControlParagraph.h
64         ControlPreamble.C
65         ControlPreamble.h
66         ControlPrefs.C
67         ControlPrefs.h
68         ControlPrint.C
69         ControlPrint.h
70         ControlRef.C
71         ControlRef.h
72         ControlSearch.C
73         ControlSearch.h
74         ControlSendto.C
75         ControlSendto.h
76         ControlShowFile.C
77         ControlShowFile.h
78         ControlSpellchecker.C
79         ControlSpellchecker.h
80         ControlTabular.C
81         ControlTabular.h
82         ControlTabularCreate.C
83         ControlTabularCreate.h
84         ControlTexinfo.C
85         ControlTexinfo.h
86         ControlThesaurus.C
87         ControlThesaurus.h
88         ControlToc.C
89         ControlToc.h
90         ControlVSpace.C
91         ControlVSpace.h
92         ControlWrap.C
93         ControlWrap.h
94         helper_funcs.C
95         helper_funcs.h
96 )
97
98 lyx_add_path(controllers_sources ${TOP_SRC_DIR}/src/frontends/controllers)
99
100 include_directories(${TOP_SRC_DIR}/src/frontends/controllers)
101
102 add_library(controllers STATIC ${controllers_sources})
103
104 target_link_libraries(controllers boost_regex boost_filesystem)
105
106
107
108
109
110