• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1diff -Npur sqlite-amalgamation-3360000/CMakeLists.txt sqlite-amalgamation-3360000-patch/CMakeLists.txt
2--- sqlite-amalgamation-3360000/CMakeLists.txt	1970-01-01 08:00:00.000000000 +0800
3+++ sqlite-amalgamation-3360000-patch/CMakeLists.txt	2021-12-17 16:08:55.519134222 +0800
4@@ -0,0 +1,6 @@
5+cmake_minimum_required(VERSION 3.14)
6+project (Sqlite[C])
7+add_library(sqlite3 SHARED sqlite3.c)
8+set_target_properties(sqlite3 PROPERTIES PUBLIC_HEADER "sqlite3.h;sqlite3ext.h")
9+include(GNUInstallDirs)
10+install(TARGETS sqlite3 PUBLIC_HEADER)
11