aboutsummaryrefslogtreecommitdiff
path: root/ports/sqlite-orm/fix-example-feature.patch
diff options
context:
space:
mode:
authorNancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>2020-09-05 11:16:00 +0800
committerGitHub <noreply@github.com>2020-09-04 20:16:00 -0700
commite0f0e7c1ec9b59543190543bfac93a37a2d1094a (patch)
tree630d8b24a82a1f9fd5b19d692e6689d013ec8562 /ports/sqlite-orm/fix-example-feature.patch
parent2e110d26c621ba2536de7f47708bf1bf16f5159d (diff)
downloadvcpkg-e0f0e7c1ec9b59543190543bfac93a37a2d1094a.tar.gz
vcpkg-e0f0e7c1ec9b59543190543bfac93a37a2d1094a.zip
[sqlite-orm] Add features and also fix usage (#13328)
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()