summaryrefslogtreecommitdiff
path: root/src/lib/ector/software/meson.build
blob: a87f66efa5e2f929c5fadadc9cbd635c78cd7dbe (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59

ector_src += files([
  'ector_renderer_software_gradient_linear.c',
  'ector_renderer_software_gradient_radial.c',
  'ector_renderer_software_shape.c',
  'ector_renderer_software_image.c',
  'ector_software_gradient.c',
  'ector_software_rasterizer.c',
  'ector_software_surface.c',
  'ector_software_buffer.c',
])


pub_eo_files = [
  'ector_software_surface.eo',
  'ector_software_buffer.eo',
  'ector_software_buffer_base.eo',
  'ector_renderer_software.eo',
  'ector_renderer_software_shape.eo',
  'ector_renderer_software_image.eo',
  'ector_renderer_software_gradient_radial.eo',
  'ector_renderer_software_gradient_linear.eo',
]

foreach eo_file : pub_eo_files
  pub_eo_file_target += custom_target('eolian_gen_' + eo_file,
    input : eo_file,
    output : [eo_file + '.h'],
    depfile : eo_file + '.d',
    install : false,
    install_dir : dir_package_include,
    command : eolian_gen + [ '-I', meson.current_source_dir(), eolian_include_directories,
                           '-o', 'h:' + join_paths(meson.current_build_dir(), eo_file + '.h'),
                           '-o', 'c:' + join_paths(meson.current_build_dir(), eo_file + '.c'),
                           '-o', 'd:' + join_paths(meson.current_build_dir(), eo_file + '.d'),
                           '-e', 'ECTOR_API',
                           '-gchd', '@INPUT@'])
endforeach


if cpu_sse3 == true
  ector_opt = static_library('ector_opt',
    sources: pub_eo_file_target + [ 'ector_software_gradient_sse3.c' ],
    dependencies: ector_pub_deps + [triangulator, freetype, draw, m] + ector_deps,
    include_directories: config_dir + [ include_directories('..') ],
    c_args: native_arch_opt_c_args,
  )
  ector_opt_lib += [ ector_opt ]
endif


#
# Only enable that again when the namespace problems are fixed. ref T8648
#
#if get_option('install-eo-files')
#  install_data(pub_eo_files,
#    install_dir: join_paths(eolian_include_dir, package_version_name)
#  )
#endif