| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /*=========================================================================
- Program: Insight Segmentation & Registration Toolkit
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2002 Insight Consortium. All rights reserved.
- See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
- 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.
- =========================================================================*/
- #include "cmProjectCommand.h"
- // cmProjectCommand
- bool cmProjectCommand::InitialPass(std::vector<std::string> const& args)
- {
- if(args.size() < 1 || args.size() > 1)
- {
- this->SetError("PROJECT called with incorrect number of arguments");
- return false;
- }
- m_Makefile->SetProjectName(args[0].c_str());
- std::string bindir = args[0];
- bindir += "_BINARY_DIR";
- std::string srcdir = args[0];
- srcdir += "_SOURCE_DIR";
-
- 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);
-
- bindir = "PROJECT_BINARY_DIR";
- srcdir = "PROJECT_SOURCE_DIR";
- m_Makefile->AddDefinition(bindir.c_str(),
- m_Makefile->GetCurrentOutputDirectory());
- m_Makefile->AddDefinition(srcdir.c_str(),
- m_Makefile->GetCurrentDirectory());
- m_Makefile->AddDefinition("PROJECT_NAME", args[0].c_str());
- return true;
- }
|