From 59f03c5663d07f87993d682e7fd07b453fc19a11 Mon Sep 17 00:00:00 2001 From: "Gabriel A. Giovanini" Date: Wed, 14 Feb 2024 12:25:42 +0100 Subject: feat: Add spellfix extension --- ext/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 ext/CMakeLists.txt (limited to 'ext/CMakeLists.txt') diff --git a/ext/CMakeLists.txt b/ext/CMakeLists.txt new file mode 100644 index 0000000..d107d7f --- /dev/null +++ b/ext/CMakeLists.txt @@ -0,0 +1,4 @@ +project(sqlite3ext VERSION 0.1 DESCRIPTION "sqlite3 ext library") + +file(GLOB src CONFIGURE_DEPENDS "*.c") +add_library(sqlite3ext SHARED ${src}) -- cgit v1.2.3