/usr/share/codeblocks/lib_finder/glfw.xml is in codeblocks-contrib 13.12-3.
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  | <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<library name="GL Framework" short_code="glfw" category="Graphics.3d">
    <settings>
        <header file="gl/glfw.h" />
    </settings>
    <!--
        By default pkg-config should be automatically invoked when
        global_var is equal to pkg-config name of library.
        If the name does not mismatch or if there are few versions
        of the library in pkg-config which we would like to provide
        under one name of global_var, we can use following
        construction which does bind code::blocks' library name with
        the one in pkg-config
    -->
    <config description="OpenGL Framework (pkg-config)">
        <pkgconfig name="libglfw"/>
    </config>
    <config>
        <!-- Windows platform configurations -->
        <filters>
            <platform name="win"/>
            <file name="include/GL/glfw.h"/>
        </filters>
        <settings>
            <path lib="$(BASE_DIR)/lib/win32"/>
            <add lib="opengl"/>
            <add lib="glu32"/>
            <add lib="kernel32"/>
            <add lib="user32"/>
            <add lib="gdi32"/>
        </settings>
        <config description="OpenGL Framework (Windows DLL)">
            <filters>
                <file name="lib/win32/libglfwdll.a"/>
            </filters>
            <settings>
                <add lib="glfwdll"/>
            </settings>
        </config>
        <config description="OpenGL Framework (Windows, static library)">
            <filters>
                <file name="lib/win32/libglfw.a"/>
            </filters>
            <settings>
                <add lib="glfw"/>
            </settings>
        </config>
    </config>
</library>
 |