working with uno via Qt5

Hello, colleagues !

I have to process ODT files in C++ Qt program using libreoffice uno software tools. I try to add there headers and libraries into CMakeLists.txt, but when I try to include header file
#include <cppuhelper/bootstrap.hxx>

into my code I receive an error

/usr/lib/libreoffice/sdk/include/com/sun/star/uno/Reference.hxx:28:49: fatal error: com/sun/star/uno/RuntimeException.hpp: No such file or directory

calling /usr/lib/libreoffice/sdk/bin/cppumaker -O …/cppumaker produce another error
ERROR: Unknown entity ‘com.sun.star.uno.RuntimeException’

I read the description of this situation at this, but which way I have to obtain files types.rgb and oovapi.rgb ? Target system is Debian Linux.

I do it in CMakeLists.txt file

find_path(OOOSDK_DIR
    NAMES sdk/bin/cppumaker program/types.rdb program/types/oovbaapi.rdb program/types/offapi.rgb
    PATHS /opt/libreoffice.org/basis3.2
               /usr/lib/libreoffice/
               /usr/lib/libreoffice/presets
           /usr/lib/libreoffice/program
           /usr/lib/libreoffice/share
           /usr/lib64/libreoffice.org/presets
           /usr/lib64/libreoffice.org/program
           /usr/lib64/libreoffice/share
)
if(OOOSDK_DIR)
message(STATUS "cppumaker was found")
if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/generated_files)
    file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/generated_files)
endif(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/generated_files)

include_directories(${CMAKE_CURRENT_BINARY_DIR}/generated_files)
add_custom_target(gen_files ALL)

add_custom_command(TARGET gen_files PRE_BUILD COMMAND ${OOOSDK_DIR}/sdk/bin/cppumaker -O ${CMAKE_CURRENT_BINARY_DIR}/generated_files ${OOOSDK_DIR}/program/types.rdb ${OOOSDK_DIR}/program/types/oovbaapi.rdb ${OOOSDK_DIR}/program/types/offapi.rdb)
else(OOOSDK_DIR)
    set(OOOSDK_ERROR "Could not find sdk/bin/cppumaker
            or program/offapi.rdb for OOoSDK.")
endif(OOOSDK_DIR)

And it is help.