~ubuntu-branches/ubuntu/lucid/cmake/lucid

« back to all changes in this revision

Viewing changes to Source/cmake.h

  • Committer: Bazaar Package Importer
  • Author(s): Artur Rona
  • Date: 2009-12-16 11:11:54 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20091216111154-6accvv6yq86h2hkc
Tags: 2.8.0-5ubuntu1
* Merge from debian testing (LP: #497349). Remaining changes:
  - Keep the Replaces: on cmake-data to cover the Kubuntu version from
    Jaunty in case someone decides to do an (unsupported) Jaunty->Lucid
    upgrade.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*=========================================================================
2
 
 
3
 
  Program:   CMake - Cross-Platform Makefile Generator
4
 
  Module:    $RCSfile: cmake.h,v $
5
 
  Language:  C++
6
 
  Date:      $Date: 2009-01-13 18:03:54 $
7
 
  Version:   $Revision: 1.109.2.7 $
8
 
 
9
 
  Copyright (c) 2002 Kitware, Inc., Insight Consortium.  All rights reserved.
10
 
  See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
11
 
 
12
 
     This software is distributed WITHOUT ANY WARRANTY; without even 
13
 
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14
 
     PURPOSE.  See the above copyright notices for more information.
15
 
 
16
 
=========================================================================*/
 
1
/*============================================================================
 
2
  CMake - Cross Platform Makefile Generator
 
3
  Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
 
4
 
 
5
  Distributed under the OSI-approved BSD License (the "License");
 
6
  see accompanying file Copyright.txt for details.
 
7
 
 
8
  This software is distributed WITHOUT ANY WARRANTY; without even the
 
9
  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
10
  See the License for more information.
 
11
============================================================================*/
17
12
// This class represents a cmake invocation. It is the top level class when
18
13
// running cmake. Most cmake based GUIS should primarily create an instance
19
14
// of this class and communicate with it.
356
351
  /** Display a message to the user.  */
357
352
  void IssueMessage(cmake::MessageType t, std::string const& text,
358
353
                    cmListFileBacktrace const& backtrace);
 
354
  //  * run the --build option
 
355
  int Build(const std::string& dir,
 
356
            const std::string& target,
 
357
            const std::string& config,
 
358
            const std::vector<std::string>& nativeOptions,
 
359
            bool clean);
359
360
protected:
360
361
  void InitializeProperties();
361
362
  int HandleDeleteCacheVariables(const char* var);
392
393
  bool SuppressDevWarnings;
393
394
  bool DoSuppressDevWarnings;
394
395
 
395
 
  ///! return true if the same cmake was used to make the cache.
396
 
  bool CacheVersionMatches();
397
396
  ///! read in a cmake list file to initialize the cache
398
397
  void ReadListFile(const char *path);
399
398