mirror of https://gitee.com/openkylin/vte2.91.git
62 lines
1.6 KiB
Meson
62 lines
1.6 KiB
Meson
# Copyright © 2018, 2019 Iñigo Martínez
|
|
# Copyright © 2019 Christian Persch
|
|
#
|
|
# This library is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License as published
|
|
# by the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
assert(get_option('gir'), 'gir is required for vala support')
|
|
|
|
add_languages('vala', required: true)
|
|
|
|
valac = meson.get_compiler('vala')
|
|
assert(valac.version().version_compare('>= 0.24.0'), 'vala >= 0.24 required')
|
|
|
|
posix_dep = valac.find_library('posix')
|
|
|
|
libvte_common_vapi_deps = [
|
|
'gio-2.0',
|
|
'glib-2.0',
|
|
'pango',
|
|
]
|
|
|
|
if get_option('gtk3')
|
|
|
|
libvte_gtk3_vapi_deps = libvte_common_vapi_deps + [
|
|
'gtk+-3.0',
|
|
]
|
|
|
|
libvte_gtk3_vapi_dep = gnome.generate_vapi(
|
|
vte_gtk3_api_name,
|
|
sources: libvte_gtk3_gir[0],
|
|
packages: libvte_gtk3_vapi_deps,
|
|
install: true,
|
|
)
|
|
|
|
endif
|
|
|
|
if get_option('gtk4')
|
|
|
|
libvte_gtk4_vapi_deps = libvte_common_vapi_deps + [
|
|
'graphene-gobject-1.0',
|
|
'gtk4',
|
|
]
|
|
|
|
libvte_gtk4_vapi_dep = gnome.generate_vapi(
|
|
vte_gtk4_api_name,
|
|
sources: libvte_gtk4_gir[0],
|
|
packages: libvte_gtk4_vapi_deps,
|
|
install: true,
|
|
)
|
|
|
|
endif
|