-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
recipes/drogon/all/patches/1.8.3-0003-find-package-sqlite.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index 680dc46..28cbcf4 100755 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -405,7 +405,7 @@ if (BUILD_SQLITE) | ||
find_package(SQLite3 QUIET) | ||
find_package(unofficial-sqlite3 QUIET) | ||
if (SQLite3_FOUND) | ||
- target_link_libraries(${PROJECT_NAME} PRIVATE SQLite3_lib) | ||
+ target_link_libraries(${PROJECT_NAME} PRIVATE SQLite::SQLite3) | ||
set(DROGON_FOUND_SQLite3 TRUE) | ||
elseif (unofficial-sqlite3_FOUND) | ||
target_link_libraries(${PROJECT_NAME} PRIVATE unofficial::sqlite3::sqlite3) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
versions: | ||
"1.8.3": | ||
folder: "all" | ||
"1.8.2": | ||
folder: "all" | ||
"1.8.0": | ||
|