mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-29 02:19:18 -05:00
cmMakefile: return directories as const std::string&
This commit is contained in:
committed by
Brad King
parent
0897c3cf58
commit
c8fd23ec6f
@@ -35,19 +35,19 @@ bool cmProjectCommand::InitialPass(std::vector<std::string> const& args,
|
||||
srcdir += "_SOURCE_DIR";
|
||||
|
||||
this->Makefile->AddCacheDefinition(
|
||||
bindir, this->Makefile->GetCurrentBinaryDirectory(),
|
||||
bindir, this->Makefile->GetCurrentBinaryDirectory().c_str(),
|
||||
"Value Computed by CMake", cmStateEnums::STATIC);
|
||||
this->Makefile->AddCacheDefinition(
|
||||
srcdir, this->Makefile->GetCurrentSourceDirectory(),
|
||||
srcdir, this->Makefile->GetCurrentSourceDirectory().c_str(),
|
||||
"Value Computed by CMake", cmStateEnums::STATIC);
|
||||
|
||||
bindir = "PROJECT_BINARY_DIR";
|
||||
srcdir = "PROJECT_SOURCE_DIR";
|
||||
|
||||
this->Makefile->AddDefinition(bindir,
|
||||
this->Makefile->GetCurrentBinaryDirectory());
|
||||
this->Makefile->AddDefinition(srcdir,
|
||||
this->Makefile->GetCurrentSourceDirectory());
|
||||
this->Makefile->AddDefinition(
|
||||
bindir, this->Makefile->GetCurrentBinaryDirectory().c_str());
|
||||
this->Makefile->AddDefinition(
|
||||
srcdir, this->Makefile->GetCurrentSourceDirectory().c_str());
|
||||
|
||||
this->Makefile->AddDefinition("PROJECT_NAME", projectName.c_str());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user