1qt_wrap_cpp 2----------- 3 4.. deprecated:: 3.14 5 6 This command was originally added to support Qt 3 before the 7 :command:`add_custom_command()` command was sufficiently mature. The 8 :module:`FindQt4` module provides the ``qt4_wrap_cpp()`` macro, which 9 should be used instead for Qt 4 projects. For projects using Qt 5 or 10 later, use the equivalent macro provided by Qt itself (e.g. Qt 5 provides 11 ``qt5_wrap_cpp()``). 12 13Manually create Qt Wrappers. 14 15.. code-block:: cmake 16 17 qt_wrap_cpp(resultingLibraryName DestName SourceLists ...) 18 19Produces moc files for all the .h files listed in the SourceLists. The 20moc files will be added to the library using the ``DestName`` source list. 21 22Consider updating the project to use the :prop_tgt:`AUTOMOC` target property 23instead for a more automated way of invoking the ``moc`` tool. 24