Advertisement
vladislav_larionov

ru.auroraos.SecretKeeper.pro

Oct 20th, 2023
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. ################################################################################
  2. ##
  3. ## Copyright (C) 2021-2022 Open Mobile Platform LLC.
  4. ## Contact: https://community.omprussia.ru/open-source
  5. ##
  6. ## This file is part of the Secret Keeper project.
  7. ##
  8. ## Redistribution and use in source and binary forms,
  9. ## with or without modification, are permitted provided
  10. ## that the following conditions are met:
  11. ##
  12. ## * Redistributions of source code must retain the above copyright notice,
  13. ## this list of conditions and the following disclaimer.
  14. ## * Redistributions in binary form must reproduce the above copyright notice,
  15. ## this list of conditions and the following disclaimer
  16. ## in the documentation and/or other materials provided with the distribution.
  17. ## * Neither the name of the copyright holder nor the names of its contributors
  18. ## may be used to endorse or promote products derived from this software
  19. ## without specific prior written permission.
  20. ##
  21. ## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  22. ## AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  23. ## THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  24. ## FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  25. ## IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  26. ## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
  27. ## OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  28. ## PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  29. ## LOSS OF USE, DATA, OR PROFITS;
  30. ## OR BUSINESS INTERRUPTION)
  31. ## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  32. ## WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  33. ## (INCLUDING NEGLIGENCE OR OTHERWISE)
  34. ## ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
  35. ## EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  36. ##
  37. ################################################################################
  38.  
  39. TARGET = ru.auroraos.SecretKeeper
  40.  
  41. QT += dbus sql
  42.  
  43. CONFIG += \
  44. auroraapp \
  45. auroraapp_i18n \
  46.  
  47. TRANSLATIONS += \
  48. translations/ru.auroraos.SecretKeeper.ts \
  49. translations/ru.auroraos.SecretKeeper-ru.ts \
  50.  
  51. HEADERS += \
  52. src/datamodel.h \
  53. src/datastorage.h \
  54.  
  55. SOURCES += \
  56. src/datamodel.cpp \
  57. src/datastorage.cpp \
  58. src/main.cpp \
  59.  
  60. DISTFILES += \
  61. qml/images/SecretKeeper.svg \
  62. qml/components/ErrorLabel.qml \
  63. qml/components/PasswordFields.qml \
  64. qml/cover/DefaultCoverPage.qml \
  65. qml/pages/StorageAuthPage.qml \
  66. qml/pages/StorageRecryptPage.qml \
  67. qml/pages/RecordsViewerPage.qml \
  68. qml/pages/RecordFieldsPage.qml \
  69. qml/pages/AboutPage.qml \
  70. qml/SecretKeeper.qml \
  71. rpm/ru.auroraos.SecretKeeper.spec \
  72. translations/*.ts \
  73. ru.auroraos.SecretKeeper.desktop \
  74. LICENSE.BSD-3-CLAUSE.md \
  75. CODE_OF_CONDUCT.md \
  76. CONTRIBUTING.md \
  77. AUTHORS.md \
  78. README.md \
  79. README.ru.md \
  80.  
  81. AURORAAPP_ICONS = 86x86 108x108 128x128 172x172
  82.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement