edb68153e3
- kf6-knewstuff/kwallet: removed all-zero blake3 placeholders - CONSOLE-TO-KDE-DESKTOP-PLAN.md: 20→22 KF6 enabled count - BOOT-PROCESS-IMPROVEMENT-PLAN.md: text-login→graphical greeter path - D-Bus session/kwin compositor/sessiond enhancements from Wave tasks - Only kirigami remains suppressed (QML-dependent, environmental gate) Zero warnings. 24 commits total.
21 lines
508 B
CMake
21 lines
508 B
CMake
include(ECMAddTests)
|
|
|
|
find_package(Qt6Test ${REQUIRED_QT_VERSION} CONFIG QUIET)
|
|
|
|
if(NOT TARGET Qt6::Test)
|
|
message(STATUS "Qt6Test not found, autotests will not be built.")
|
|
return()
|
|
endif()
|
|
|
|
if(BUILD_KWALLETD)
|
|
ecm_add_tests(
|
|
blowfishtest.cpp
|
|
LINK_LIBRARIES Qt6::Test KF6WalletBackend
|
|
)
|
|
|
|
target_include_directories(blowfishtest PRIVATE ${CMAKE_SOURCE_DIR}/src/runtime/kwalletd
|
|
${CMAKE_BINARY_DIR}/src/runtime/kwalletd/backend)
|
|
endif()
|
|
|
|
add_subdirectory(KWallet)
|