Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « software_renderer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a0d63fdbb0cde1604a8840d01a690a050fbc1b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
project(software_renderer)

include_directories(
  .
  ${OMIM_ROOT}/3party/protobuf/protobuf/src
  ${OMIM_ROOT}/3party/expat/lib
  ${OMIM_ROOT}/3party/freetype/include
  ${OMIM_ROOT}/3party/glm
)

set(
  SRC
  area_info.hpp
  brush_info.hpp
  circle_info.hpp
  cpu_drawer.cpp
  cpu_drawer.hpp
  default_font.cpp
  feature_processor.cpp
  feature_processor.hpp
  feature_styler.cpp
  feature_styler.hpp
  frame_image.hpp
  geometry_processors.cpp
  geometry_processors.hpp
  glyph_cache.cpp
  glyph_cache.hpp
  glyph_cache_impl.cpp
  glyph_cache_impl.hpp
  icon_info.hpp
  path_info.hpp
  pen_info.hpp
  point.h
  proto_to_styles.cpp
  proto_to_styles.hpp
  rect.h
  software_renderer.cpp
  software_renderer.hpp
  text_engine.cpp
  text_engine.h
)

add_library(${PROJECT_NAME} ${SRC})