Warning, /frameworks/kwallet/src/runtime/kwalletd/backend/tests/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 set( EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR} )
0002
0003 include_directories(
0004 ${CMAKE_CURRENT_SOURCE_DIR}/..
0005 ${CMAKE_CURRENT_BINARY_DIR}/..
0006 )
0007
0008 include(ECMMarkAsTest)
0009
0010 macro(kwallet_executable_tests)
0011 foreach(_testname ${ARGN})
0012 add_executable(${_testname} ${_testname}.cpp)
0013 ecm_mark_as_test(${_testname})
0014 target_link_libraries(${_testname} Qt6::Widgets KF6WalletBackend)
0015 endforeach(_testname)
0016 endmacro()
0017
0018 kwallet_executable_tests(
0019 backendtest
0020 testbf
0021 testsha
0022 )