diff options
author | Riccardo Spagni <ric@spagni.net> | 2014-10-06 18:51:03 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2014-10-06 18:51:03 +0200 |
commit | 735a017bb3b9ec8c3a240cf2a8feee789e0a95e8 (patch) | |
tree | 8ef4c4ee48b3f6f7d647a5a50166039fc2c79a6b /external | |
parent | enforce static libraries when building statically (diff) | |
download | monero-735a017bb3b9ec8c3a240cf2a8feee789e0a95e8.tar.xz |
removed required flags from miniupnp and unbound
Diffstat (limited to 'external')
-rwxr-xr-x | external/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index 77de69c17..954424ea7 100755 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -35,7 +35,7 @@ # ...except for FreeBSD, because FreeBSD is a special case that doesn't play well with # others. -find_package(MiniUpnpc REQUIRED) +find_package(MiniUpnpc) # FreeBSD doesn't play well with the local copy, so default to using shared SET(USE_SHARED_MINIUPNPC true) @@ -74,7 +74,7 @@ else() set(UPNP_LIBRARIES "upnpc-static" PARENT_SCOPE) endif() -find_package(Unbound REQUIRED) +find_package(Unbound) IF(!UNBOUND_INCLUDE_DIR OR STATIC) if(STATIC) |