Skip to content

Instantly share code, notes, and snippets.

@lauromoura
Created October 24, 2017 05:10
Show Gist options
  • Save lauromoura/fd634f64d057a4146c45fbac709cc9b8 to your computer and use it in GitHub Desktop.
Save lauromoura/fd634f64d057a4146c45fbac709cc9b8 to your computer and use it in GitHub Desktop.
Meson build for simple efl C# projects
project('button', 'cs')
mono = dependency('efl-mono')
# Somehow meson doesn't seem to be passing the --libs option correctly to
# the mono compiler
mono_libs = mono.get_pkgconfig_variable('mono_libs')
executable('button', 'button.cs', dependencies : mono, cs_args : mono_libs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment