From 94215e5427738c56a714d0c46a63b742e542f129 Mon Sep 17 00:00:00 2001 From: D33r-Gee Date: Tue, 2 Jul 2024 11:52:26 -0700 Subject: [PATCH] make: added qml/androidcustomdatadir files --- src/Makefile.qt.include | 9 ++++++--- src/qml/androidcustomdatadir.cpp | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/Makefile.qt.include b/src/Makefile.qt.include index 96416c04c3..b46654450b 100644 --- a/src/Makefile.qt.include +++ b/src/Makefile.qt.include @@ -412,9 +412,12 @@ QML_RES_QML = \ qml/pages/wallet/DesktopWallets.qml if TARGET_ANDROID -BITCOIN_QT_H += qml/androidnotifier.h -BITCOIN_QML_BASE_CPP += qml/androidnotifier.cpp -QT_MOC_CPP += qml/moc_androidnotifier.cpp +BITCOIN_QT_H += qml/androidnotifier.h \ + qml/androidcustomdatadir.h +BITCOIN_QML_BASE_CPP += qml/androidnotifier.cpp \ + qml/androidcustomdatadir.cpp +QT_MOC_CPP += qml/moc_androidnotifier.cpp \ + qml/moc_androidcustomdatadir.cpp endif BITCOIN_QT_CPP = $(BITCOIN_QT_BASE_CPP) diff --git a/src/qml/androidcustomdatadir.cpp b/src/qml/androidcustomdatadir.cpp index eba691fc93..6240cac526 100644 --- a/src/qml/androidcustomdatadir.cpp +++ b/src/qml/androidcustomdatadir.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 The Bitcoin Core developers +// Copyright (c) 2023-present The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php.