-
Notifications
You must be signed in to change notification settings - Fork 516
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update meson dependencies [Meson only] (#475)
makes the following changes - update meson wrap dependencies - update gtest 1.14.0 -> 1.15.0 - update sqlite 3.42.0 -> 3.46.1 - removed redundant variables that pointed to the same sources in example executables
- Loading branch information
Showing
5 changed files
with
36 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
example2_srcs = files( | ||
'src/main.cpp' | ||
) | ||
example2_srcs = files('src/main.cpp') | ||
|
||
# if running on windows define _CRT_SECURE_NO_WARNINGS | ||
example2_args = [] | ||
|
||
|
||
sqlitecpp_demo2_exe = executable('SQLITECPP_sample_demo2', | ||
sqlitecpp_sample2_srcs, | ||
dependencies: sqlitecpp_dep, | ||
# inherit the default options from sqlitecpp | ||
override_options: sqlitecpp_opts, | ||
cpp_args: 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, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[wrap-file] | ||
directory = sqlite-amalgamation-3420000 | ||
source_url = https://www.sqlite.org/2023/sqlite-amalgamation-3420000.zip | ||
source_filename = sqlite-amalgamation-3420000.zip | ||
source_hash = 1cc824d0f5e675829fa37018318fda833ea56f7e9de2b41eddd9f7643b5ec29e | ||
patch_filename = sqlite3_3.42.0-1_patch.zip | ||
patch_url = https://wrapdb.mesonbuild.com/v2/sqlite3_3.42.0-1/get_patch | ||
patch_hash = 821b2e49a9d3daea7415716c6958697de601bb66f66a5a176b18c1c86c48c9b8 | ||
source_fallback_url = https://github.com/mesonbuild/wrapdb/releases/download/sqlite3_3.42.0-1/sqlite-amalgamation-3420000.zip | ||
wrapdb_version = 3.42.0-1 | ||
directory = sqlite-amalgamation-3460100 | ||
source_url = https://www.sqlite.org/2024/sqlite-amalgamation-3460100.zip | ||
source_filename = sqlite-amalgamation-3460100.zip | ||
source_hash = 77823cb110929c2bcb0f5d48e4833b5c59a8a6e40cdea3936b99e199dbbe5784 | ||
patch_filename = sqlite3_3.46.1-1_patch.zip | ||
patch_url = https://wrapdb.mesonbuild.com/v2/sqlite3_3.46.1-1/get_patch | ||
patch_hash = 1358b931e30a454e55dbedbc28d5844946a17c68b45a5333093152d7af75982b | ||
source_fallback_url = https://github.com/mesonbuild/wrapdb/releases/download/sqlite3_3.46.1-1/sqlite-amalgamation-3460100.zip | ||
wrapdb_version = 3.46.1-1 | ||
|
||
[provide] | ||
sqlite3 = sqlite3_dep |