Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openframeworks/openFrameworks
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f63cfb75750126168a1793a14366a2def2db2668
Choose a base ref
..
head repository: openframeworks/openFrameworks
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 75079bc160462cdd7dab122ea7a935359cbdc555
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 meson.build
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -265,6 +265,7 @@ if host_machine.system() == 'linux'
elif host_machine.system() == 'darwin'

deps += [dependency('appleframeworks', modules : ['AppKit', 'Foundation', 'AVKit', 'GLKit'])]
add_project_arguments('-ObjC++', language: 'cpp')

endif

@@ -316,7 +317,6 @@ lib = library('openFrameworks',
include_directories: inc,
dependencies: deps,
install: true,
cpp_args: host_machine.system() == 'darwin' ? '-ObjC++' : ''
)

openframeworks_dep = declare_dependency(link_with: lib, include_directories: inc, dependencies: deps)