mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-07 03:06:05 -04:00
14 lines
326 B
Meson
14 lines
326 B
Meson
example2_srcs = files('src/main.cpp')
|
|
|
|
# if running on windows define _CRT_SECURE_NO_WARNINGS
|
|
example2_args = []
|
|
|
|
executable(
|
|
'SQLITECPP_sample_demo2',
|
|
example2_srcs,
|
|
dependencies: sqlitecpp_dep,
|
|
# inherit the default options from sqlitecpp
|
|
override_options: sqlitecpp_opts,
|
|
cpp_args: example2_args,
|
|
)
|