forked from conan-io/conan-center-index
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
774bb1b
commit 01473ae
Showing
2 changed files
with
27 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
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,20 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index 7b1c0d5..e0c7d22 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -58,11 +58,13 @@ endif() | ||
|
||
# Find Apache Runtime | ||
option(APR_STATIC "Link to the APR static library" OFF) | ||
-find_package(APR REQUIRED) | ||
+find_package(apr REQUIRED) | ||
+set(APR_LIBRARIES apr::apr) | ||
|
||
# Find Apache Runtime Utilities | ||
option(APU_STATIC "Link to the APR-Util static library" OFF) | ||
-find_package(APR-Util REQUIRED) | ||
+find_package(apr-util REQUIRED) | ||
+set(APR_UTIL_LIBRARIES apr-util::apr-util) | ||
|
||
find_package( Threads REQUIRED ) | ||
|