]> git.lyx.org Git - lyx.git/blob - development/cmake/src/graphics/CMakeLists.txt
19dcc5df143211538aa6ed6b20d8470b58f81411
[lyx.git] / development / cmake / src / graphics / CMakeLists.txt
1 project(graphics)
2
3 set(graphics_sources
4         GraphicsCache.h
5         GraphicsCache.C
6         GraphicsCacheItem.h
7         GraphicsCacheItem.C
8         GraphicsConverter.h
9         GraphicsConverter.C
10         GraphicsImage.h
11         GraphicsImage.C
12         GraphicsLoader.h
13         GraphicsLoader.C
14         GraphicsParams.C
15         GraphicsParams.h
16         LoaderQueue.h
17         LoaderQueue.C
18         GraphicsTypes.h
19         GraphicsTypes.C
20         PreviewImage.h
21         PreviewImage.C
22         PreviewLoader.h
23         PreviewLoader.C
24         Previews.h
25         Previews.C
26 )
27
28 lyx_add_path(graphics_sources ${TOP_SRC_DIR}/src/graphics)
29
30 include_directories(${TOP_SRC_DIR}/src/graphics)
31
32 add_library(graphics STATIC ${graphics_sources})
33