aboutsummaryrefslogtreecommitdiffstats
path: root/lang/swift510/files/patch-swiftpm_Sources_SPMSQLite3_CMakeLists.txt
blob: 9f8ebc30be3a217fe238809a56262833b5a900c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
--- swiftpm/Sources/SPMSQLite3/CMakeLists.txt.orig	2024-06-05 06:47:24 UTC
+++ swiftpm/Sources/SPMSQLite3/CMakeLists.txt
@@ -11,3 +11,7 @@ target_link_libraries(SPMSQLite3 INTERFACE
   ${CMAKE_CURRENT_SOURCE_DIR})
 target_link_libraries(SPMSQLite3 INTERFACE
   SQLite::SQLite3)
+
+get_target_property(sqlite3_lib_full_path SQLite::SQLite3 IMPORTED_LOCATION)
+get_filename_component(sqlite3_lib_dir "${sqlite3_lib_full_path}" DIRECTORY)
+target_link_directories(SPMSQLite3 INTERFACE "${sqlite3_lib_dir}")