You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

sqlite.windows.patch002 536 B

12345678910
  1. diff -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)