Add support for sqlite3#94
Merged
Merged
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #94 +/- ##
==========================================
+ Coverage 73.09% 73.16% +0.06%
==========================================
Files 571 573 +2
Lines 56051 56342 +291
==========================================
+ Hits 40971 41223 +252
- Misses 15080 15119 +39
... and 4 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces support for the SQLite3 database library as a new optional module in the codebase. The changes add the SQLite3 source and header files, update build configurations to recognize the new module, and ensure conditional inclusion of SQLite3-related code throughout the project.
SQLite3 module integration:
sqlite3_library.candsqlite3_library.hunderthirdparty/sqlite3_library, including module metadata and licensing information, and set up the inclusion of the SQLite3 amalgamated source (sqlite3.c) and header (sqlite3.h). [1] [2]tests/CMakeLists.txtto includesqlite3_libraryas a target module.Conditional inclusion and usage:
yup_core.handyup_core.cppto conditionally include the SQLite3 module headers and implementation files whenYUP_MODULE_AVAILABLE_sqlite3_libraryis defined, ensuring the codebase only includes SQLite3 support if the module is available. [1] [2]