Warning, /maui/bonsai/src/controllers/libkommit/autotests/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # SPDX-FileCopyrightText: 2022 Laurent Montel <montel@kde.org>
0002 # SPDX-License-Identifier: BSD-3-Clause
0003 macro(add_LIBKOMMIT_test _source)
0004     set( _test ${_source})
0005     get_filename_component( _name ${_source} NAME_WE )
0006     add_executable( ${_name} ${_test} ${ARGN} ${_name}.h)
0007     add_test(NAME ${_name} COMMAND ${_name} )
0008     ecm_mark_as_test(${_name})
0009     target_link_libraries( ${_name} Qt::Test libkommit)
0010 endmacro()
0011 
0012 add_LIBKOMMIT_test(tagtest.cpp)
0013 add_LIBKOMMIT_test(clonecommandtest.cpp)
0014 add_LIBKOMMIT_test(commandcleantest.cpp)
0015 add_LIBKOMMIT_test(commandpushtest.cpp)
0016 add_LIBKOMMIT_test(addsubmodulecommandtest.cpp)