]> git.lyx.org Git - lyx.git/blob - development/cmake/src/frontends/CMakeLists.txt
590d3812f60dd8b26fbf6e722236439ba6e8c737
[lyx.git] / development / cmake / src / frontends / CMakeLists.txt
1 project(frontends)
2
3 include_directories(${TOP_SRC_DIR}/src/frontends)
4
5 add_subdirectory(controllers) 
6 add_subdirectory(qt4) 
7
8 set(frontends_sources
9         Alert.C
10         Alert.h
11         Alert_pimpl.h
12         Dialogs.C
13         Dialogs.h
14         FileDialog.h
15         LyXKeySym.h
16         LyXKeySymFactory.h
17         LyXScreenFactory.h
18         LyXView.C
19         LyXView.h
20         Menubar.h
21         Painter.C
22         Painter.h
23         Timeout.C
24         Timeout.h
25         Toolbars.C
26         Toolbars.h
27         WorkArea.h
28         WorkAreaFactory.h
29         font_metrics.h
30         guiapi.h
31         guiapi.C
32         key_state.h
33         lyx_gui.h
34         mouse_state.h
35         nullpainter.C
36         nullpainter.h
37         screen.C
38         screen.h
39 )
40
41 lyx_add_path(frontends_sources ${TOP_SRC_DIR}/src/frontends)
42
43 add_library(frontends STATIC ${frontends_sources})
44
45
46