{"id":31280565,"url":"https://github.com/tayne3/sqlite3-cmake","last_synced_at":"2026-05-06T16:34:12.299Z","repository":{"id":314231177,"uuid":"1054546668","full_name":"tayne3/sqlite3-cmake","owner":"tayne3","description":"🔗 SQLite3 CMake wrapper","archived":false,"fork":false,"pushed_at":"2026-03-14T01:47:24.000Z","size":2702,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-14T13:35:31.992Z","etag":null,"topics":["cmake","sqlite","sqlite3"],"latest_commit_sha":null,"homepage":"","language":"CMake","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tayne3.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-11T02:09:19.000Z","updated_at":"2026-03-14T01:47:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"98d3751f-fc3d-4e26-ac02-30f1e4a12348","html_url":"https://github.com/tayne3/sqlite3-cmake","commit_stats":null,"previous_names":["tayne3/sqlite3-cmake"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/tayne3/sqlite3-cmake","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tayne3%2Fsqlite3-cmake","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tayne3%2Fsqlite3-cmake/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tayne3%2Fsqlite3-cmake/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tayne3%2Fsqlite3-cmake/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tayne3","download_url":"https://codeload.github.com/tayne3/sqlite3-cmake/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tayne3%2Fsqlite3-cmake/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32702115,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T08:33:17.875Z","status":"ssl_error","status_checked_at":"2026-05-06T08:33:17.221Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cmake","sqlite","sqlite3"],"created_at":"2025-09-24T02:30:39.992Z","updated_at":"2026-05-06T16:34:12.295Z","avatar_url":"https://github.com/tayne3.png","language":"CMake","funding_links":[],"categories":[],"sub_categories":[],"readme":"**English** | [中文](README_zh.md)\n\n\u003cp align=\"center\" style=\"font-size: 36px; font-weight: bold; color: #797979;\"\u003esqlite3-cmake\u003c/p\u003e\n\n![CMake](https://img.shields.io/badge/CMake-3.14%2B-brightgreen)\n![License](https://img.shields.io/badge/license-MIT-blue.svg)\n![SQLite](https://img.shields.io/badge/SQLite-3.51.2-green.svg)\n[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/tayne3/sqlite3-cmake)\n\nA CMake wrapper for [SQLite3](https://www.sqlite.org/) amalgamation source code, providing easy integration with your C/C++ projects.\n\n## Project Integration\n\n#### Usage with [FetchContent](https://cmake.org/cmake/help/latest/module/FetchContent.html)\n\n```cmake\ncmake_minimum_required(VERSION 3.14)\nproject(example)\n\ninclude(FetchContent)\nFetchContent_Declare(sqlite3\n    GIT_REPOSITORY https://github.com/tayne3/sqlite3-cmake\n    GIT_TAG v3.50.4\n)\nFetchContent_MakeAvailable(sqlite3)\n\nadd_executable(example main.c)\ntarget_link_libraries(example sqlite3::sqlite3)\n```\n\n#### Usage with [CPM.cmake](https://github.com/cpm-cmake/CPM.cmake)\n\nUse bundled SQLite3 source code:\n\n```cmake\ncmake_minimum_required(VERSION 3.14)\nproject(example)\n\nif(NOT DEFINED ENV{CPM_SOURCE_CACHE})\n set(ENV{CPM_SOURCE_CACHE} ${CMAKE_SOURCE_DIR}/cmake_modules)\nendif()\ninclude(cmake/CPM.cmake)\n\nCPMAddPackage(\"gh:tayne3/sqlite3-cmake@3.51.2\")\n\nadd_executable(example main.c)\ntarget_link_libraries(example sqlite3::sqlite3)\n```\n\nUse specified version of SQLite3 source code:\n\n```cmake\ncmake_minimum_required(VERSION 3.14)\nproject(example)\n\nif(NOT DEFINED ENV{CPM_SOURCE_CACHE})\n set(ENV{CPM_SOURCE_CACHE} ${CMAKE_SOURCE_DIR}/cmake_modules)\nendif()\ninclude(cmake/CPM.cmake)\n\nCPMAddPackage(\n    NAME sqlite3\n    URI \"gh:tayne3/sqlite3-cmake@3.51.2\"\n    OPTIONS \"SQLITE3_EXTERNAL_URL https://www.sqlite.org/2025/sqlite-amalgamation-3490100.zip\"\n            \"SQLITE3_EXTERNAL_HASH SHA3_256=e7eb4cfb2d95626e782cfa748f534c74482f2c3c93f13ee828b9187ce05b2da7\"\n)\n\nadd_executable(example main.c)\ntarget_link_libraries(example sqlite3::sqlite3)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftayne3%2Fsqlite3-cmake","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftayne3%2Fsqlite3-cmake","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftayne3%2Fsqlite3-cmake/lists"}