mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-07 11:16:11 -04:00
use c++14 on windows
on windows may show an error in xstddef if c++11 is used this is a workarround for that issue "deduced return types are a C++14 extension"
This commit is contained in:
parent
179ef091c6
commit
9f5d446e36
@ -84,7 +84,14 @@ if not (host_machine.system() == 'windows' and cxx.get_id() == 'msvc')
|
|||||||
'-Wno-long-long',
|
'-Wno-long-long',
|
||||||
]
|
]
|
||||||
endif
|
endif
|
||||||
|
## using MSVC headers requires c++14, if not will show an error on xstddef as:
|
||||||
|
## 'auto' return without trailing return type; deduced return types are a C++14 extension
|
||||||
|
if host_machine.system() == 'windows'
|
||||||
|
message('[WINDOWS] using c++14 standard')
|
||||||
|
sqlitecpp_opts += [
|
||||||
|
'cpp_std=c++14',
|
||||||
|
]
|
||||||
|
endif
|
||||||
# Options relative to SQLite and SQLiteC++ functions
|
# Options relative to SQLite and SQLiteC++ functions
|
||||||
|
|
||||||
if get_option('SQLITE_ENABLE_COLUMN_METADATA')
|
if get_option('SQLITE_ENABLE_COLUMN_METADATA')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user