~ubuntu-branches/ubuntu/utopic/cmake/utopic

« back to all changes in this revision

Viewing changes to Source/cmake.h

  • Committer: Package Import Robot
  • Author(s): Harald Sitter
  • Date: 2013-10-10 12:54:39 UTC
  • mfrom: (1.14.7)
  • Revision ID: package-import@ubuntu.com-20131010125439-h0ahaj004on6oj92
Tags: 2.8.12-0ubuntu1
New upstream release LP: #1246701

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
/** \brief Represents a cmake invocation.
36
36
 *
37
37
 * This class represents a cmake invocation. It is the top level class when
38
 
 * running cmake. Most cmake based GUIS should primarily create an instance
 
38
 * running cmake. Most cmake based GUIs should primarily create an instance
39
39
 * of this class and communicate with it.
40
40
 *
41
41
 * The basic process for a GUI is as follows:
255
255
  typedef  void (*ProgressCallbackType)
256
256
    (const char*msg, float progress, void *);
257
257
  /**
258
 
   *  Set the function used by GUI's to receive progress updates
 
258
   *  Set the function used by GUIs to receive progress updates
259
259
   *  Function gets passed: message as a const char*, a progress
260
260
   *  amount ranging from 0 to 1.0 and client data. The progress
261
261
   *  number provided may be negative in cases where a message is
532
532
   "CMakeCache.txt file, globbing expressions using * and ? are supported. "\
533
533
   "The option may be repeated for as many cache entries as desired.\n" \
534
534
   "Use with care, you can make your CMakeCache.txt non-working."}, \
535
 
  {"-G <generator-name>", "Specify a makefile generator.", \
 
535
  {"-G <generator-name>", "Specify a build system generator.", \
536
536
   "CMake may support multiple native build systems on certain platforms.  " \
537
 
   "A makefile generator is responsible for generating a particular build " \
 
537
   "A generator is responsible for generating a particular build " \
538
538
   "system.  Possible generator names are specified in the Generators " \
539
539
   "section."},\
540
540
  {"-T <toolset-name>", "Specify toolset name if supported by generator.", \