refactor: Move SimpleCrypt to third_party/

This commit is contained in:
Lars Toenning
2023-12-17 12:05:55 +01:00
parent cb0912ebc0
commit 457beab327
11 changed files with 520 additions and 512 deletions

17
third_party/simplecrypt/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,17 @@
# SPDX-FileCopyrightText: Copyright (C) swift Project Community / Contributors
# SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
add_library(SimpleCrypt STATIC)
target_sources(SimpleCrypt
PRIVATE
simplecrypt.cpp
simplecrypt.h
)
target_link_libraries(SimpleCrypt
PUBLIC
Qt::Core
)
target_include_directories(SimpleCrypt
PUBLIC
${PROJECT_SOURCE_DIR}/third_party
)