mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-05 10:29:27 +00:00
CMake: TOR_BIN -> TOR_DIR
This commit is contained in:
parent
b8d7438c6a
commit
f2ef57ad92
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ option(STATIC "Link libraries statically, requires static Qt")
|
||||||
option(SELF_CONTAINED "Disable when building Feather for packages" OFF)
|
option(SELF_CONTAINED "Disable when building Feather for packages" OFF)
|
||||||
option(LOCALMONERO "Include LocalMonero module" ON)
|
option(LOCALMONERO "Include LocalMonero module" ON)
|
||||||
option(XMRIG "Include XMRig module" ON)
|
option(XMRIG "Include XMRig module" ON)
|
||||||
option(TOR_BIN "Path to Tor binary to embed inside Feather" OFF)
|
option(TOR_DIR "Path to Tor binary to embed inside Feather" OFF)
|
||||||
option(CHECK_UPDATES "Enable checking for application updates" OFF)
|
option(CHECK_UPDATES "Enable checking for application updates" OFF)
|
||||||
option(PLATFORM_INSTALLER "Built-in updater fetches installer (windows-only)" OFF)
|
option(PLATFORM_INSTALLER "Built-in updater fetches installer (windows-only)" OFF)
|
||||||
option(USE_DEVICE_TREZOR "Trezor support compilation" ON)
|
option(USE_DEVICE_TREZOR "Trezor support compilation" ON)
|
||||||
|
@ -149,7 +149,7 @@ if(TOR_DIR)
|
||||||
|
|
||||||
message(STATUS "Embedding Tor binaries at ${TOR_DIR}")
|
message(STATUS "Embedding Tor binaries at ${TOR_DIR}")
|
||||||
else()
|
else()
|
||||||
message(STATUS "Skipping Tor inclusion because -DTOR_BIN=Off")
|
message(STATUS "Skipping Tor inclusion because -DTOR_DIR=Off")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(MINGW)
|
if(MINGW)
|
||||||
|
|
Loading…
Reference in a new issue