1
0
Fork 0
A CMake implementation for installing/using SQLite3
This repository has been archived on 2026-03-18. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
Find a file
Devon b19cceef16
Merge pull request #1 from tek256/bruxisma/fixup-cmake
♻️ Refactor the CMake file to follow more modern best practices
2023-01-19 20:00:12 -08:00
src Initial commit, thanks to bruxisma 2023-01-19 17:40:35 -08:00
.gitignore Correct package config definition to link right 2023-01-19 18:28:57 -08:00
CMakeLists.txt 🐛 Use target_include_directories over include_directories 2023-01-19 19:56:36 -08:00
LICENSE Initial commit 2023-01-19 17:31:10 -08:00
README.md Remove unneeded (broken) img from readme 2023-01-19 17:41:30 -08:00
SQLite3Config.cmake.in ♻️ Refactor the CMake file to follow more modern best practices 2023-01-19 19:34:16 -08:00

sqlite3.cmake
a cmake implementation for sqlite3 for installing/using SQLite3
Made by Devon with love.

Current SQLite3 Version: 3.40.1

About

A CMake implementation for installing/using SQLite3. Source code for SQLite3 is sourced from the SQLite Amalgamation.

Installation (System Wide)

NOTE: Make sure you have administrative privlidges before attempting to install

git clone https://github.com/tek256/sqlite3.cmake
cd sqlite3.cmake
cmake -Bbuild -DCMAKE_BUILD_TYPE=Release
cmake --build build
cmake --install build

Credit

Written in collaboration with bruxisma. I was the monkey, they were the brains.