/usr/share/compiz/cmake/CompizBcop.cmake is in compiz-dev 1:0.9.7.6-0ubuntu1.
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 | find_program (XSLTPROC_EXECUTABLE xsltproc)
mark_as_advanced (FORCE XSLTPROC_EXECUTABLE)
if (NOT XSLTPROC_EXECUTABLE)
    message (FATAL_ERROR "xsltproc not found.")
endif ()
# does the plugin require bcop
function (compiz_plugin_needs_bcop _file _return)
    file (READ ${_file} _xml_content)
    if ("${_xml_content}" MATCHES "useBcop=\"true\"")
	set (${_return} TRUE PARENT_SCOPE)
    else ()
	set (${_return} FALSE PARENT_SCOPE)
    endif ()
endfunction ()
# prepare bcop build
function (compiz_add_bcop_targets _plugin _file _sources)
    add_custom_target (${_plugin}-options
        SOURCES ${CMAKE_BINARY_DIR}/generated/${_plugin}_options.h
                ${CMAKE_BINARY_DIR}/generated/${_plugin}_options.cpp
    )
    add_custom_command (
        OUTPUT ${CMAKE_BINARY_DIR}/generated/${_plugin}_options.h
        COMMAND ${XSLTPROC_EXECUTABLE}
                    -o ${CMAKE_BINARY_DIR}/generated/${_plugin}_options.h
                    --stringparam "file" "header" ${COMPIZ_BCOP_XSLT}
                    ${_file}
        DEPENDS ${_file}
    )
    add_custom_command (
        OUTPUT ${CMAKE_BINARY_DIR}/generated/${_plugin}_options.cpp
        COMMAND ${XSLTPROC_EXECUTABLE}
                    -o ${CMAKE_BINARY_DIR}/generated/${_plugin}_options.cpp
                    --stringparam "file" "source" ${COMPIZ_BCOP_XSLT}
                    ${_file} > ${CMAKE_BINARY_DIR}/generated/${_plugin}_options.cpp
        DEPENDS ${_file}
                ${CMAKE_BINARY_DIR}/generated/${_plugin}_options.h
    )
    set (${_sources} "${CMAKE_BINARY_DIR}/generated/${_plugin}_options.h;${CMAKE_BINARY_DIR}/generated/${_plugin}_options.cpp" PARENT_SCOPE)
endfunction ()
 |