summaryrefslogtreecommitdiff
path: root/gtk/css/meson.build
blob: 907b174f496ae858bec0301c51689885b017d807 (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
gtk_css_public_sources = files([
  'gtkcsslocation.c',
  'gtkcsserror.c',
  'gtkcsssection.c',
])

gtk_css_private_sources = files([
  'gtkcssdataurl.c',
  'gtkcssparser.c',
  'gtkcsstokenizer.c',
])

gtk_css_public_headers = files([
  'gtkcssenums.h',
  'gtkcsserror.h',
  'gtkcsslocation.h',
  'gtkcsssection.h',
])

install_headers(gtk_css_public_headers, 'gtkcss.h', subdir: 'gtk-4.0/gtk/css')

gtk_css_deps = [
  libm,
  glib_dep,
  gobject_dep,
  platform_gio_dep,
]

gtk_css_enums = gnome.mkenums('gtkcssenumtypes',
                              sources: gtk_css_public_headers,
                              c_template: 'gtkcssenumtypes.c.template',
                              h_template: 'gtkcssenumtypes.h.template',
                              install_dir: join_paths(gtk_includedir, 'gtk-4.0/gtk/css'),
                              install_header: true)

gtk_css_enum_h = gtk_css_enums[1]

libgtk_css = static_library('gtk_css',
                            sources: [
                              gtk_css_public_sources,
                              gtk_css_private_sources,
                              gtk_css_enums,
                            ],
                            dependencies: gtk_css_deps,
                            include_directories: [ confinc, ],
                            c_args: [
                              '-DGTK_CSS_COMPILATION',
                              '-DG_LOG_DOMAIN="Gtk"',
                              '-DG_LOG_STRUCTURED=1',
                            ] + common_cflags,
                            link_args: common_ldflags)

# We don't have link_with: to internal static libs here on purpose, just
# list the dependencies and generated headers and such, for use in the
# "public" libgtk_dep used by internal executables.
libgtk_css_dep = declare_dependency(include_directories: [ confinc, ],
                                sources: [ gtk_css_enum_h ],
                                dependencies: gtk_css_deps)