2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-01-11 22:55:47 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-01-11 22:55:47 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2001-01-18 19:20:24 +03:00
|
|
|
#include "cmProjectCommand.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
|
2001-01-18 19:20:24 +03:00
|
|
|
// cmProjectCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmProjectCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
if(args.size() < 1 )
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
|
|
|
this->SetError("PROJECT called with incorrect number of arguments");
|
|
|
|
return false;
|
2002-04-05 21:08:12 +04:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->SetProjectName(args[0].c_str());
|
2001-02-15 21:30:13 +03:00
|
|
|
|
|
|
|
std::string bindir = args[0];
|
|
|
|
bindir += "_BINARY_DIR";
|
|
|
|
std::string srcdir = args[0];
|
|
|
|
srcdir += "_SOURCE_DIR";
|
|
|
|
|
2006-05-12 21:44:15 +04:00
|
|
|
this->Makefile->AddCacheDefinition
|
|
|
|
(bindir.c_str(),
|
|
|
|
this->Makefile->GetCurrentOutputDirectory(),
|
|
|
|
"Value Computed by CMake", cmCacheManager::STATIC);
|
|
|
|
this->Makefile->AddCacheDefinition
|
|
|
|
(srcdir.c_str(),
|
|
|
|
this->Makefile->GetCurrentDirectory(),
|
|
|
|
"Value Computed by CMake", cmCacheManager::STATIC);
|
2001-02-15 21:30:13 +03:00
|
|
|
|
2001-05-23 18:01:10 +04:00
|
|
|
bindir = "PROJECT_BINARY_DIR";
|
|
|
|
srcdir = "PROJECT_SOURCE_DIR";
|
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddDefinition(bindir.c_str(),
|
|
|
|
this->Makefile->GetCurrentOutputDirectory());
|
|
|
|
this->Makefile->AddDefinition(srcdir.c_str(),
|
|
|
|
this->Makefile->GetCurrentDirectory());
|
2001-05-23 18:01:10 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddDefinition("PROJECT_NAME", args[0].c_str());
|
2001-10-17 23:11:02 +04:00
|
|
|
|
2005-02-22 23:31:02 +03:00
|
|
|
// Set the CMAKE_PROJECT_NAME variable to be the highest-level
|
|
|
|
// project name in the tree. This is always the first PROJECT
|
|
|
|
// command encountered.
|
2006-03-15 19:02:08 +03:00
|
|
|
if(!this->Makefile->GetDefinition("CMAKE_PROJECT_NAME"))
|
2005-02-22 23:31:02 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddDefinition("CMAKE_PROJECT_NAME", args[0].c_str());
|
2008-10-15 21:56:07 +04:00
|
|
|
this->Makefile->AddCacheDefinition
|
|
|
|
("CMAKE_PROJECT_NAME",
|
|
|
|
args[0].c_str(),
|
|
|
|
"Value Computed by CMake", cmCacheManager::STATIC);
|
2005-02-22 23:31:02 +03:00
|
|
|
}
|
|
|
|
|
2004-08-27 16:41:07 +04:00
|
|
|
std::vector<std::string> languages;
|
2002-04-03 00:43:23 +04:00
|
|
|
if(args.size() > 1)
|
|
|
|
{
|
|
|
|
for(size_t i =1; i < args.size(); ++i)
|
|
|
|
{
|
2004-08-27 16:41:07 +04:00
|
|
|
languages.push_back(args[i]);
|
2002-04-03 00:43:23 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-08-26 22:55:55 +04:00
|
|
|
// if no language is specified do c and c++
|
2004-08-27 16:41:07 +04:00
|
|
|
languages.push_back("C");
|
|
|
|
languages.push_back("CXX");
|
2002-04-03 00:43:23 +04:00
|
|
|
}
|
2007-06-28 17:09:26 +04:00
|
|
|
this->Makefile->EnableLanguage(languages, false);
|
2001-01-05 19:41:20 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|