Skip to content

Commit

Permalink
Merge pull request #96 from agraef/mapping_v1-examples-buildargs
Browse files Browse the repository at this point in the history
Add install and c_args variables for examples, thanks @agraef!
  • Loading branch information
harryhaaren committed Sep 22, 2018
2 parents 7e6bd0d + e383a29 commit 444d5a0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,18 @@ fluidsynth_dep = dependency('fluidsynth', required: false)
foreach name: get_option('examples').split(',')
example_src = []
dependencies = []
c_args = []
link_args = []
install = false

subdir(name)

executable('ctlra_' + name,
example_src,
include_directories: ctlra_includes,
dependencies : dependencies,
install : install,
c_args : c_args,
link_args : link_args,
link_with: ctlra)
endforeach
Expand Down

0 comments on commit 444d5a0

Please sign in to comment.