aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/clangrefactoring/clangrefactoring.qbs
blob: ec8c4c6a2472328406038533d69700b43eb039b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import qbs
import qbs.FileInfo

QtcPlugin {
    name: "ClangRefactoring"

    Depends { name: "libclang"; required: false }
    Depends { name: "clang_defines" }
    condition: libclang.present && libclang.toolingEnabled

    Depends { name: "ClangSupport" }
    Depends { name: "Utils" }

    Depends { name: "ClangPchManager" }
    Depends { name: "Core" }
    Depends { name: "CppTools" }
    Depends { name: "ProjectExplorer" }
    Depends { name: "TextEditor" }

    cpp.includePaths: ["."]

    files: [
        "baseclangquerytexteditorwidget.cpp",
        "baseclangquerytexteditorwidget.h",
        "clangqueryexamplehighlighter.cpp",
        "clangqueryexamplehighlighter.h",
        "clangqueryexamplehighlightmarker.h",
        "clangqueryexampletexteditorwidget.cpp",
        "clangqueryexampletexteditorwidget.h",
        "clangqueryhighlighter.cpp",
        "clangqueryhighlighter.h",
        "clangqueryhighlightmarker.h",
        "clangqueryhoverhandler.cpp",
        "clangqueryhoverhandler.h",
        "clangqueryprojectsfindfilter.cpp",
        "clangqueryprojectsfindfilter.h",
        "clangqueryprojectsfindfilter.ui",
        "clangqueryprojectsfindfilterwidget.cpp",
        "clangqueryprojectsfindfilterwidget.h",
        "clangquerytexteditorwidget.cpp",
        "clangquerytexteditorwidget.h",
        "clangrefactoringplugin.cpp",
        "clangrefactoringplugin.h",
        "locatorfilter.cpp",
        "locatorfilter.h",
        "projectpartutilities.cpp",
        "projectpartutilities.h",
        "qtcreatorclangqueryfindfilter.cpp",
        "qtcreatorclangqueryfindfilter.h",
        "qtcreatoreditormanager.cpp",
        "qtcreatoreditormanager.h",
        "qtcreatorrefactoringprojectupdater.cpp",
        "qtcreatorrefactoringprojectupdater.h",
        "qtcreatorsearch.cpp",
        "qtcreatorsearch.h",
        "qtcreatorsearchhandle.cpp",
        "qtcreatorsearchhandle.h",
        "qtcreatorsymbolsfindfilter.cpp",
        "qtcreatorsymbolsfindfilter.h",
        "querysqlitestatementfactory.h",
        "refactoringclient.cpp",
        "refactoringclient.h",
        "refactoringconnectionclient.cpp",
        "refactoringconnectionclient.h",
        "refactoringengine.cpp",
        "refactoringengine.h",
        "refactoringprojectupdater.cpp",
        "refactoringprojectupdater.h",
        "searchhandle.cpp",
        "searchhandle.h",
        "searchinterface.h",
        "sourcelocations.h",
        "symbol.h",
        "symbolquery.h",
        "symbolqueryinterface.h",
        "symbolsfindfilter.cpp",
        "symbolsfindfilter.h",
        "symbolsfindfilterconfigwidget.cpp",
        "symbolsfindfilterconfigwidget.h",
    ]
}