~neon/qt/qtdoc

« back to all changes in this revision

Viewing changes to doc/src/development/cmake-manual.qdoc

  • Committer: André Klitzing
  • Date: 2015-02-12 05:50:50 UTC
  • Revision ID: git-v1:e2e70692911f32cfea38269bd18603079277e2c9
CMake: Add documentation for qt5_add_binary_resources

Change-Id: I078bfcfd4296ff5638b5bd08a93ecb4398f72451
Reviewed-by: Stephen Kelly <steveire@gmail.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
193
193
    \row \li qt5_add_resources(outfiles inputfile ... OPTIONS ...)
194
194
         \li Create code from a list of Qt resource files.
195
195
             Options may be given to rcc, such as those found
196
 
             when executing "rcc -help"
 
196
             when executing "rcc -help".
 
197
    \row \li qt5_add_binary_resources(target inputfile ... OPTIONS ... DESTINATION ...)
 
198
         \li Create an RCC file from a list of Qt resource files.
 
199
             Options may be given to rcc, such as those found
 
200
             when executing "rcc -help".
 
201
             A destination may be given to use a different filename
 
202
             or path for the RCC file.
197
203
    \row \li qt5_generate_moc(inputfile outputfile )
198
204
         \li Creates a rule to run moc on infile and create outfile.
199
205
             Use this if for some reason QT5_WRAP_CPP() isn't appropriate, e.g.