meson: Generate the pkg-config file

Instead of using a template file, and filling in the blanks, we can use
the Meson pkgconfig module to generate the pkg-config file mostly from
the library object itself — including dependencies and flags.

The template file remains in tree for the Autotools build.
macos/v1.5.9
Emmanuele Bassi 7 years ago
parent 0d6aaa20ea
commit b1119d8fcf
  1. 6
      meson.build
  2. 63
      src/meson.build

@ -231,12 +231,6 @@ if dl_dep.found()
pkgconf.set('DLOPEN_LIBS', '-ldl') pkgconf.set('DLOPEN_LIBS', '-ldl')
endif endif
configure_file(input: 'epoxy.pc.in',
output: 'epoxy.pc',
configuration: pkgconf,
install: true,
install_dir: join_paths(epoxy_libdir, 'pkgconfig'))
# Python # Python
python = import('python3').find_python() python = import('python3').find_python()
if not python.found() if not python.found()

@ -67,31 +67,38 @@ if host_system == 'windows'
epoxy_deps += [ opengl32_dep, gdi32_dep ] epoxy_deps += [ opengl32_dep, gdi32_dep ]
endif endif
# Allow building a static version of epoxy libepoxy = library(
if libtype != 'shared' 'epoxy',
libepoxy_static = static_library('epoxy', sources: epoxy_sources + epoxy_headers,
sources: epoxy_sources + epoxy_headers, version: '0.0.0',
install: true, install: true,
dependencies: epoxy_deps, dependencies: epoxy_deps,
include_directories: libepoxy_inc, include_directories: libepoxy_inc,
c_args: common_cflags + visibility_cflags, c_args: common_cflags + visibility_cflags,
link_args: common_ldflags) link_args: common_ldflags,
libepoxy = libepoxy_static )
endif
libepoxy_dep = declare_dependency(
if libtype != 'static' link_with: libepoxy,
libepoxy_shared = shared_library('epoxy', include_directories: libepoxy_inc,
sources: epoxy_sources + epoxy_headers, dependencies: epoxy_deps,
version: '0.0.0', sources: epoxy_headers,
install: true, )
dependencies: epoxy_deps,
include_directories: libepoxy_inc, epoxy_has_glx = build_glx ? '1' : '0'
c_args: common_cflags + visibility_cflags, epoxy_has_egl = build_egl ? '1' : '0'
link_args: common_ldflags) epoxy_has_wgl = build_wgl ? '1' : '0'
libepoxy = libepoxy_shared
endif pkg = import('pkgconfig')
pkg.generate(
libepoxy_dep = declare_dependency(link_with: libepoxy, libraries: libepoxy,
include_directories: libepoxy_inc, name: 'epoxy',
dependencies: epoxy_deps, description: 'GL dispatch library',
sources: epoxy_headers) version: meson.project_version(),
variables: [
'epoxy_has_glx=@0@'.format(epoxy_has_glx),
'epoxy_has_egl=@0@'.format(epoxy_has_egl),
'epoxy_has_wgl=@0@'.format(epoxy_has_wgl),
],
filebase: 'epoxy',
)

Loading…
Cancel
Save