mirror of https://gitee.com/openkylin/vte2.91.git
28 lines
993 B
Meson
28 lines
993 B
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/>.
|
|
|
|
if get_option('glade') and get_option('gtk3')
|
|
subdir('glade')
|
|
endif
|
|
|
|
if get_option('gir') and (get_option('gtk3') or get_option('gtk4'))
|
|
subdir('gir')
|
|
endif
|
|
|
|
if get_option('vapi') and (get_option('gtk3') or get_option('gtk4'))
|
|
subdir('vala')
|
|
endif
|