gnome-shell/subprojects/shew/meson.build
Florian Müllner adaa5ec6bd build: Change upcoming version to 40.alpha2
I messed up and released 40.alpha at the same time as 3.38.2, when it's
supposed to be in January. In order to re-align with the schedule, change
the upcoming version to 40.alpha2 so we don't have to skip a release and
will be back on track in time of 40.beta.
2020-12-22 01:46:14 +01:00

28 lines
740 B
Meson

project('shew', 'c',
version: '40.alpha2',
meson_version: '>= 0.53.0',
license: 'LGPLv2+',
)
assert(meson.is_subproject(), 'This project is only intended to be used as a subproject!')
gnome = import('gnome')
pkg = import('pkgconfig')
api_version = '0'
full_name = '@0@-@1@'.format(meson.project_name(), api_version)
package_version = meson.project_version()
package_name = get_option('package_name')
assert(package_name != '', 'package_name must be specified')
pkgdatadir = join_paths(get_option('datadir'), package_name)
pkglibdir = join_paths(get_option('libdir'), package_name)
girdir = join_paths(pkgdatadir, 'gir-1.0')
typelibdir = join_paths(pkglibdir, 'girepository-1.0')
gtk_dep = dependency('gtk+-3.0')
subdir('src')