fix compilation with newer gtest

C++17 now.
This commit is contained in:
Rosen Penev 2025-06-09 20:31:41 -07:00 committed by GitHub
parent 1df768817e
commit da222465cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,8 +1,8 @@
project(
'SQLiteCpp', 'cpp',
# SQLiteCpp supports C++11
# however newer versions of gtest requires C++14
default_options: ['cpp_std=c++14', 'warning_level=3'],
# however newer versions of gtest requires C++17
default_options: ['cpp_std=c++17', 'warning_level=3'],
license: 'MIT',
version: '3.3.3',
)