Warning, /sdk/kommit/dolphinplugins/autotests/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 # SPDX-FileCopyrightText: 2022 Hamed Masafi <hamed.masafi@gmail.com> 0002 # SPDX-License-Identifier: BSD-3-Clause 0003 0004 macro(add_dolphinplugins_test _source) 0005 set( _test ${_source} gittestmanager.cpp gittestmanager.h ../statuscache.cpp ../manager.cpp ../dolphinplugin.cpp ../dolphinplugin.h) 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 libkommitgui DolphinVcs PkgConfig::LIBGIT2) 0011 endmacro() 0012 0013 add_dolphinplugins_test(overlaytest.cpp)