aboutsummaryrefslogtreecommitdiff
path: root/ports/sqlite-orm/fix-includes-not-found.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-includes-not-found.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-includes-not-found.patch')
-rw-r--r--ports/sqlite-orm/fix-includes-not-found.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/ports/sqlite-orm/fix-includes-not-found.patch b/ports/sqlite-orm/fix-includes-not-found.patch
deleted file mode 100644
index 42ee7672c..000000000
--- a/ports/sqlite-orm/fix-includes-not-found.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 5ffbdf3..a6b2659 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -43,11 +43,11 @@ set(SqliteOrm_INCLUDE "${CMAKE_CURRENT_SOURCE_DIR}/include")
- add_library(sqlite_orm INTERFACE)
-
- target_sources(sqlite_orm INTERFACE
-- $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include/sqlite_orm/sqlite_orm.h>
-+ $<BUILD_INTERFACE:${SqliteOrm_INCLUDE}/include/sqlite_orm/sqlite_orm.h>
- $<INSTALL_INTERFACE:include/sqlite_orm/sqlite_orm.h>)
-
- target_include_directories(sqlite_orm INTERFACE
-- $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include>
-+ $<BUILD_INTERFACE:${SqliteOrm_INCLUDE}/include>
- $<INSTALL_INTERFACE:include>)
-
- include(ucm)