Warning, /kdevelop/kdevelop/plugins/bazaar/tests/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 remove_definitions(
0002     -DQT_NO_CAST_FROM_ASCII
0003     -DQT_NO_CAST_TO_ASCII
0004     -DQT_NO_CAST_FROM_BYTEARRAY
0005 )
0006 
0007 # Running the test only makes sense if the bzr command line client
0008 # is present. So check for it before adding the test...
0009 FIND_PROGRAM(BZR_FOUND NAMES bzr)
0010 
0011 if (BZR_FOUND)
0012     set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR})
0013     set(bazaartest_SRCS
0014         test_bazaar.cpp
0015         ../diffjob.cpp
0016         ../bzrannotatejob.cpp
0017         ../bazaarplugin.cpp
0018         ../bazaarutils.cpp
0019         ../copyjob.cpp
0020     )
0021 
0022     ecm_add_test(${bazaartest_SRCS}
0023         TEST_NAME test_kdevbazaar
0024         LINK_LIBRARIES Qt5::Test KDev::Vcs KDev::Util KDev::Tests)
0025 endif()