Browse Source

fix macos build

master
Alexandros Theodotou 3 years ago
parent
commit
937d89387a
Signed by: alex
GPG Key ID: 022EAE42313D70F3
  1. 13
      meson.build
  2. 5
      pugl/meson.build

13
meson.build

@ -16,7 +16,7 @@ @@ -16,7 +16,7 @@
# along with ZToolkit. If not, see <https://www.gnu.org/licenses/>.
project (
'ztoolkit', ['c'],
'ztoolkit', [ 'c' ],
version: '0.1.2',
license: 'AGPLv3+',
meson_version: '>= 0.43.0',
@ -64,6 +64,15 @@ cdata = configuration_data () @@ -64,6 +64,15 @@ cdata = configuration_data ()
if os_linux or os_freebsd
deps += dependency('x11')
cdata.set('HAVE_X11', 1)
elif os_darwin
add_languages ('objc')
deps += dependency(
'appleframeworks',
modules: [
'foundation',
'cocoa',
'appkit',
])
endif
if get_option('enable_rsvg')
@ -182,7 +191,7 @@ if not meson.is_subproject() @@ -182,7 +191,7 @@ if not meson.is_subproject()
pkg_mod = import('pkgconfig')
pkg_mod.generate(
libraries: ztoolkit_lib,
version: '0.1.1',
version: '0.1.2',
name: 'ztoolkit',
filebase: 'ztoolkit',
description: 'A GUI toolkit for LV2 plugins',

5
pugl/meson.build

@ -29,4 +29,9 @@ elif os_windows @@ -29,4 +29,9 @@ elif os_windows
join_paths ('pugl', 'detail', 'win.c'),
join_paths ('pugl', 'detail', 'win_cairo.c'),
])
elif os_darwin
pugl_srcs += files([
join_paths ('pugl', 'detail', 'mac.m'),
join_paths ('pugl', 'detail', 'mac_cairo.m'),
])
endif

Loading…
Cancel
Save