From f92746f51db6b8aa74f710306f9b3dbef2034817 Mon Sep 17 00:00:00 2001 From: Charles Zablit Date: Wed, 6 May 2026 16:25:23 +0100 Subject: [PATCH 1/2] [windows] add PDB files to install target --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0f71584..8cafcfb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,6 +31,11 @@ install(TARGETS SQLite3 ARCHIVE DESTINATION lib LIBRARY DESTINATION lib RUNTIME DESTINATION bin) +if(MSVC) + install(FILES $ + DESTINATION bin + OPTIONAL) +endif() install(FILES Sources/CSQLite/include/sqlite3.h Sources/CSQLite/include/sqlite3ext.h From 01141d5f61418b4b44093765d7e65ca2b8f0190c Mon Sep 17 00:00:00 2001 From: Charles Zablit Date: Wed, 13 May 2026 16:15:39 +0200 Subject: [PATCH 2/2] Update CMakeLists.txt Co-authored-by: Saleem Abdulrasool --- CMakeLists.txt | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8cafcfb..35bf766 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,11 +31,9 @@ install(TARGETS SQLite3 ARCHIVE DESTINATION lib LIBRARY DESTINATION lib RUNTIME DESTINATION bin) -if(MSVC) - install(FILES $ - DESTINATION bin - OPTIONAL) -endif() +install(FILES $ + DESTINATION bin + OPTIONAL) install(FILES Sources/CSQLite/include/sqlite3.h Sources/CSQLite/include/sqlite3ext.h