Skip to content

Commit

Permalink
Fix: use c++11 in meson.build cbrunet#76.
Browse files Browse the repository at this point in the history
  • Loading branch information
bzamecnik committed Apr 19, 2023
1 parent e61de6b commit 68ca380
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ project(
version: '0.4.0',
license: 'GNU General Public License v2 (GPLv2)',
# license_files: 'LICENSE.txt',
meson_version: '>=1.0.0'
meson_version: '>=1.0.0',
default_options : ['c_std=c11', 'cpp_std=c++11']
)

poppler_dep = dependency('poppler-cpp', version: '>=0.26.0')
Expand Down

0 comments on commit 68ca380

Please sign in to comment.