2001-01-11 19:55:47 +00:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-23 22:03:27 +00:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-01-11 19:55:47 +00:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-23 22:03:27 +00:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-01-11 19:55:47 +00:00
|
|
|
|
2002-01-21 20:30:43 +00:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-01-11 19:55:47 +00:00
|
|
|
|
|
|
|
=========================================================================*/
|
2001-01-18 16:20:24 +00:00
|
|
|
#include "cmProjectCommand.h"
|
2001-01-05 16:41:20 +00:00
|
|
|
|
2001-01-18 16:20:24 +00:00
|
|
|
// cmProjectCommand
|
2002-12-11 23:13:33 +00:00
|
|
|
bool cmProjectCommand::InitialPass(std::vector<std::string> const& args)
|
2001-01-05 16:41:20 +00:00
|
|
|
{
|
2002-12-11 23:13:33 +00:00
|
|
|
if(args.size() < 1 )
|
2001-01-05 16:41:20 +00:00
|
|
|
{
|
|
|
|
this->SetError("PROJECT called with incorrect number of arguments");
|
|
|
|
return false;
|
2002-04-05 17:08:12 +00:00
|
|
|
}
|
2001-01-05 16:41:20 +00:00
|
|
|
m_Makefile->SetProjectName(args[0].c_str());
|
2001-02-15 18:30:13 +00:00
|
|
|
|
|
|
|
std::string bindir = args[0];
|
|
|
|
bindir += "_BINARY_DIR";
|
|
|
|
std::string srcdir = args[0];
|
|
|
|
srcdir += "_SOURCE_DIR";
|
|
|
|
|
2001-08-08 15:54:46 +00:00
|
|
|
m_Makefile->AddCacheDefinition(bindir.c_str(),
|
|
|
|
m_Makefile->GetCurrentOutputDirectory(),
|
|
|
|
"Value Computed by CMake", cmCacheManager::STATIC);
|
|
|
|
m_Makefile->AddCacheDefinition(srcdir.c_str(),
|
|
|
|
m_Makefile->GetCurrentDirectory(),
|
|
|
|
"Value Computed by CMake", cmCacheManager::STATIC);
|
2001-02-15 18:30:13 +00:00
|
|
|
|
2001-05-23 14:01:10 +00:00
|
|
|
bindir = "PROJECT_BINARY_DIR";
|
|
|
|
srcdir = "PROJECT_SOURCE_DIR";
|
|
|
|
|
|
|
|
m_Makefile->AddDefinition(bindir.c_str(),
|
2002-10-23 22:03:27 +00:00
|
|
|
m_Makefile->GetCurrentOutputDirectory());
|
2001-05-23 14:01:10 +00:00
|
|
|
m_Makefile->AddDefinition(srcdir.c_str(),
|
2002-10-23 22:03:27 +00:00
|
|
|
m_Makefile->GetCurrentDirectory());
|
2001-05-23 14:01:10 +00:00
|
|
|
|
2001-10-17 19:11:02 +00:00
|
|
|
m_Makefile->AddDefinition("PROJECT_NAME", args[0].c_str());
|
|
|
|
|
2004-08-27 12:41:07 +00:00
|
|
|
std::vector<std::string> languages;
|
2002-04-02 20:43:23 +00:00
|
|
|
if(args.size() > 1)
|
|
|
|
{
|
|
|
|
for(size_t i =1; i < args.size(); ++i)
|
|
|
|
{
|
2004-08-27 12:41:07 +00:00
|
|
|
languages.push_back(args[i]);
|
2002-04-02 20:43:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-08-26 18:55:55 +00:00
|
|
|
// if no language is specified do c and c++
|
2004-08-27 12:41:07 +00:00
|
|
|
languages.push_back("C");
|
|
|
|
languages.push_back("CXX");
|
2002-04-02 20:43:23 +00:00
|
|
|
}
|
2004-08-27 12:41:07 +00:00
|
|
|
m_Makefile->EnableLanguage(languages);
|
2001-01-05 16:41:20 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|