Really remove gtk+ option (see also 1e28ee9cc9)

After patching gtk/ytk to add touch support and macOS rendering,
upstream gtk+2 is no longer an option
This commit is contained in:
Robin Gareus 2025-07-06 15:15:59 +02:00
parent ea4616913c
commit 99c1f50a72
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
26 changed files with 64 additions and 224 deletions

View file

@ -40,16 +40,10 @@ def build(bld):
obj.export_includes = ['.']
obj.includes = ['.']
obj.uselib = 'SIGCPP PANGOMM CAIROMM BOOST XML TEMPORAL'
obj.use = [ 'libpbd', 'libcanvas', 'libardour', 'libgtkmm2ext', 'libtemporal' ]
obj.uselib = 'SIGCPP PANGOMM CAIROMM BOOST XML TEMPORAL GLIBMM GIOMM'
obj.use = [ 'libpbd', 'libcanvas', 'libardour', 'libgtkmm2ext', 'libtemporal', 'libytkmm' ]
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'