Skip to content

Commit

Permalink
Reverted examples/meson.build to the version in master
Browse files Browse the repository at this point in the history
The use of deps_libpistache here, rather than just pistache_dep, is no
longer needed thanks to fix pistacheio#1225
(pistacheio#1225).
  • Loading branch information
dgreatwood committed Aug 5, 2024
1 parent 879ad61 commit c11365f
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions examples/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@ pistache_example_files = [

threads_dep = dependency('threads')

# In OpenBSD, rapidjson header fles are installed in
# /usr/local/include, not in /usr/include. Consequently, we need
# deps_libpistache in our dependencies, not just pistache_dep
#
# In particular, for rapidjson/prettywriter.h in rest_description.cc

foreach example_name : pistache_example_files
executable('run'+example_name, example_name+'.cc', dependencies: [pistache_dep, threads_dep, deps_libpistache])
executable('run'+example_name, example_name+'.cc', dependencies: [pistache_dep, threads_dep])
endforeach

0 comments on commit c11365f

Please sign in to comment.