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

0001 set(kdevtests_LIB_SRCS
0002     autotestshell.cpp
0003     kdevsignalspy.cpp
0004     projectsgenerator.cpp
0005     testcore.cpp
0006     testproject.cpp
0007     testfile.cpp
0008     testlanguagecontroller.cpp
0009     testhelpers.cpp
0010     testplugincontroller.cpp
0011     testdebugsession.cpp
0012     testvariablecontroller.cpp
0013     testbreakpointcontroller.cpp
0014     testframestackmodel.cpp
0015 
0016     json/delayedoutput.cpp
0017     json/declarationvalidator.cpp
0018     json/testsuite.cpp
0019 )
0020 
0021 kdevplatform_add_library(KDevPlatformTests SOURCES ${kdevtests_LIB_SRCS})
0022 target_link_libraries(KDevPlatformTests
0023 PUBLIC
0024     KDev::Shell
0025     KDev::Language
0026     KDev::Project
0027     KDev::Debugger
0028 PRIVATE
0029     Qt5::Test
0030 )
0031 
0032 install(FILES
0033     autotestshell.h
0034     kdevsignalspy.h
0035     projectsgenerator.h
0036     testcore.h
0037     testproject.h
0038     testfile.h
0039     testlanguagecontroller.h
0040     testhelpers.h
0041     testplugincontroller.h
0042     testdebugsession.h
0043     testvariablecontroller.h
0044     testbreakpointcontroller.h
0045     testframestackmodel.h
0046     DESTINATION ${KDE_INSTALL_INCLUDEDIR}/kdevplatform/tests/
0047     COMPONENT Devel
0048 )
0049 
0050 install(FILES
0051     json/declarationvalidator.h
0052     json/delayedoutput.h
0053     json/jsontesthelpers.h
0054     json/testsuite.h
0055     json/testsuite.cpp
0056     json/jsondeclarationtests.h
0057     json/jsonducontexttests.h
0058     json/jsontypetests.h
0059     DESTINATION ${KDE_INSTALL_INCLUDEDIR}/kdevplatform/tests/json
0060     COMPONENT Devel
0061 )