Localize stripped down gtk2

This is intended mainly for GNU/Linux distros who will remove
GTK2 support in the near future.
This commit is contained in:
Robin Gareus 2023-12-13 06:45:00 +01:00
parent 2a928dae19
commit ad51c7c2ba
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
1528 changed files with 915658 additions and 57 deletions

View file

@ -40,10 +40,16 @@ def build(bld):
obj.export_includes = ['.']
obj.includes = ['.']
obj.uselib = 'SIGCPP CAIROMM GTKMM BOOST XML TEMPORAL'
obj.uselib = 'SIGCPP PANGOMM CAIROMM BOOST XML TEMPORAL'
obj.use = [ 'libpbd', 'libcanvas', 'libardour', 'libgtkmm2ext', 'libtemporal' ]
obj.name = 'libwaveview'
obj.target = 'waveview'
obj.vnum = WAVEVIEW_LIB_VERSION
obj.install_path = bld.env['LIBDIR']
obj.defines += [ 'PACKAGE="' + I18N_PACKAGE + '"' ]
if bld.is_defined('YTK'):
obj.use += [ 'libytkmm' ]
obj.uselib += ' GLIBMM GIOMM'
else:
obj.uselib += ' GTKMM'