aboutsummaryrefslogtreecommitdiff
path: root/ports/sqlite-orm/fix-example-feature.patch
diff options
context:
space:
mode:
Diffstat (limited to 'ports/sqlite-orm/fix-example-feature.patch')
-rw-r--r--ports/sqlite-orm/fix-example-feature.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/ports/sqlite-orm/fix-example-feature.patch b/ports/sqlite-orm/fix-example-feature.patch
new file mode 100644
index 000000000..ad68dade0
--- /dev/null
+++ b/ports/sqlite-orm/fix-example-feature.patch
@@ -0,0 +1,11 @@
+diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
+index 2857b65..3ee46e6 100644
+--- a/examples/CMakeLists.txt
++++ b/examples/CMakeLists.txt
+@@ -4,5 +4,5 @@ file(GLOB files "*.cpp")
+ foreach(file ${files})
+ get_filename_component(file_basename ${file} NAME_WE)
+ add_executable(${file_basename} ${file})
+- target_link_libraries(${file_basename} PRIVATE sqlite_orm sqlite3)
++ target_link_libraries(${file_basename} PRIVATE sqlite_orm)
+ endforeach()