diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-11-18 03:10:04 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-11-18 03:10:04 +0100 |
commit | 446ecfea0b1579ce14f8ccdab35b663375ace484 (patch) | |
tree | fc8cc5e49464bd32ecbec8b38df02c276f3c37ef /CMakeLists.txt | |
parent | Fix hunter messing with pkg-config (diff) | |
download | nheko-446ecfea0b1579ce14f8ccdab35b663375ace484.tar.xz |
Try to fix lmdbxx download
Diffstat (limited to '')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6340fc3c..6424f38f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -487,10 +487,10 @@ if(USE_BUNDLED_LMDBXX) lmdbxx URL "https://raw.githubusercontent.com/hoytech/lmdbxx/1.0.0/lmdb++.h" DOWNLOAD_NO_EXTRACT TRUE + CONFIGURE_COMMAND "" + BUILD_COMMAND "" ) - if(NOT lmdbxx_POPULATED) - FetchContent_Populate(lmdbxx) - endif() + FetchContent_Populate(lmdbxx) add_library(lmdbxx INTERFACE) target_include_directories(lmdbxx INTERFACE ${lmdbxx_SOURCE_DIR}) add_library(lmdbxx::lmdbxx ALIAS lmdbxx) |