Warning, /pim/kmail-account-wizard/src/accountwizard/autotests/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 # SPDX-FileCopyrightText: none 0002 # SPDX-License-Identifier: BSD-3-Clause 0003 0004 macro(accountwizard_test _source) 0005 set(_test ${_source}) 0006 get_filename_component(_name ${_source} NAME_WE ) 0007 add_executable( ${_name} ${_test} ${ARGN} ${_name}.h) 0008 add_test(NAME ${_name} COMMAND ${_name} ) 0009 ecm_mark_as_test(${_name}) 0010 target_link_libraries( ${_name} Qt::Test libaccountwizard) 0011 set_target_properties(${_name} PROPERTIES 0012 DISABLE_PRECOMPILE_HEADERS ON 0013 ) 0014 0015 endmacro() 0016 0017 accountwizard_test(accountconfigurationtest.cpp) 0018 accountwizard_test(setupmanagertest.cpp) 0019 accountwizard_test(identitybasetest.cpp)