Skip to content

Commit

Permalink
Specify C++11 std in meson build (#157)
Browse files Browse the repository at this point in the history
Compilers differ on what the default standard is and I had to set C++11 standard as part of the [vcpkg port](microsoft/vcpkg#33001) to get it work on MacOS.

Also you forgot to bump the version number last release.
  • Loading branch information
DownerCase authored Aug 6, 2023
1 parent bf103d8 commit 4e618f7
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
@@ -1,7 +1,8 @@
project('inih',
['c'],
license : 'BSD-3-Clause',
version : '56',
version : '57',
default_options : ['cpp_std=c++11']
)

#### options ####
Expand Down

0 comments on commit 4e618f7

Please sign in to comment.