This file is indexed.

/usr/share/codeblocks/lib_finder/wxwidgets.xml is in codeblocks-contrib 10.05-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<library name="wxWidgets" short_code="wx" category1="Gui" category2="Cross-Platform">

    <settings>
        <!-- All includes which start with wx/ force detection of this library -->
        <header file="wx/*.h"/>
    </settings>

    <config description="wxWidgets configured through wx-config">
        <!-- Confugration for systems where you can find wx-config -->
        <filters>
            <exec name="wx-config"/>
        </filters>
        <settings>
            <add cflags="`wx-config --cxxflags`"/>
            <add lflags="`wx-config --libs`"/>
        </settings>
    </config>

    <config>
        <!-- Configurations for windows hosts -->

        <!-- These are the same for all configurations -->
        <platform name="win"/>
        <filters>
            <file name="include/wx/wx.h"/>
            <file name="include/wx/wxprec.h"/>
        </filters>
        <settings>
            <path include="$(BASE_DIR)/include"/>
            <path include="$(BASE_DIR)/contrib/include"/>
            <!-- NOTE: This is needed inly to force compatibility with current usage of $(#wx.libs) variable -->
            <path lib="$(BASE_DIR)/lib"/>
            <path lib="$(BASE_DIR)/lib/$(CONFIG_NAME)"/>
            <path obj="$(BASE_DIR)/include"/>
            <add define="__GNUWIN32__"/>
            <add define="HAVE_W32API_H"/>
            <add define="__WXMSW__"/>
        </settings>

        <!-- Next we have settings for different configurations -->

        <config description="wxWidgets 2.6 Monolithic DLL (Configuration: $(CONFIG_NAME))">
            <filters>
                <file name="lib/*$(CONFIG_NAME)/msw/wx/setup.h"/>
                <file name="lib/*$(CONFIG_NAME)/libwxmsw26.a"/>
            </filters>
            <settings>
                <path include="$(BASE_DIR)/lib/$(CONFIG_NAME)/msw"/>
                <add define="WXUSINGDLL"/>
                <add lib="wxmsw26"/>
            </settings>
        </config>

        <config description="wxWidgets 2.6 Unicode Monolithic DLL (Configuration: $(CONFIG_NAME))">
            <filters>
                <file name="lib/*$(CONFIG_NAME)/mswu/wx/setup.h"/>
                <file name="lib/*$(CONFIG_NAME)/libwxmsw26.a"/>
            </filters>
            <settings>
                <path include="$(BASE_DIR)/lib/$(CONFIG_NAME)/mswu"/>
                <add define="WXUSINGDLL"/>
                <add define="wxUSE_UNICODE"/>
                <add lib="wxmsw26u"/>
            </settings>
        </config>

        <config description="wxWidgets 2.8 Unicode Monolithic DLL (Configuration: $(CONFIG_NAME))">
            <filters>
                <file name="lib/*$(CONFIG_NAME)/mswu/wx/setup.h"/>
                <file name="lib/*$(CONFIG_NAME)/libwxmsw28u.a"/>
            </filters>
            <settings>
                <path include="$(BASE_DIR)/lib/$(CONFIG_NAME)/mswu"/>
                <add define="WXUSINGDLL"/>
                <add define="wxUSE_UNICODE"/>
                <add lib="wxmsw28u"/>
            </settings>
        </config>

        <config description="wxWidgets 2.8 Monolithic DLL (Configuration: $(CONFIG_NAME))">
            <filters>
                <file name="lib/*$(CONFIG_NAME)/msw/wx/setup.h"/>
                <file name="lib/*$(CONFIG_NAME)/libwxmsw28.a"/>
            </filters>
            <settings>
                <path include="$(BASE_DIR)/lib/$(CONFIG_NAME)/msw"/>
                <add define="WXUSINGDLL"/>
                <add lib="wxmsw28"/>
            </settings>
        </config>

    </config>

</library>