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)
)
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()
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");});