mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 19:49:28 +00:00
Cmake: add SELF_CONTAINED
This commit is contained in:
parent
2f4c4a7650
commit
f816f44f4c
3 changed files with 9 additions and 0 deletions
|
@ -10,6 +10,7 @@ set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_REVISION}")
|
|||
|
||||
option(STATIC "Link libraries statically, requires static Qt")
|
||||
|
||||
option(SELF_CONTAINED "Disable when building Feather for packages" OFF)
|
||||
option(LOCALMONERO "Include LocalMonero module" ON)
|
||||
option(XMRIG "Include XMRig module" ON)
|
||||
option(TOR_BIN "Path to Tor binary to embed inside Feather" OFF)
|
||||
|
|
|
@ -144,6 +144,10 @@ if(WITH_SCANNER)
|
|||
)
|
||||
endif()
|
||||
|
||||
if(SELF_CONTAINED)
|
||||
target_compile_definitions(feather PRIVATE SELF_CONTAINED=1)
|
||||
endif()
|
||||
|
||||
if(DONATE_BEG)
|
||||
target_compile_definitions(feather PRIVATE DONATE_BEG=1)
|
||||
endif()
|
||||
|
|
|
@ -317,6 +317,10 @@ void MainWindow::initMenu() {
|
|||
ui->actionCreateDesktopEntry->setDisabled(true);
|
||||
#endif
|
||||
|
||||
#ifndef SELF_CONTAINED
|
||||
ui->actionCreateDesktopEntry->setVisible(false);
|
||||
#endif
|
||||
|
||||
// [Help]
|
||||
connect(ui->actionAbout, &QAction::triggered, this, &MainWindow::menuAboutClicked);
|
||||
connect(ui->actionOfficialWebsite, &QAction::triggered, [this](){Utils::externalLinkWarning(this, "https://featherwallet.org");});
|
||||
|
|
Loading…
Reference in a new issue