mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 06:09:14 -05:00
cmMakefile: Port users of GetStart* methods to new names.
This commit is contained in:
@@ -131,12 +131,12 @@ const char* CCONV cmGetHomeOutputDirectory(void *arg)
|
||||
const char* CCONV cmGetStartDirectory(void *arg)
|
||||
{
|
||||
cmMakefile *mf = static_cast<cmMakefile *>(arg);
|
||||
return mf->GetStartDirectory();
|
||||
return mf->GetCurrentSourceDirectory();
|
||||
}
|
||||
const char* CCONV cmGetStartOutputDirectory(void *arg)
|
||||
{
|
||||
cmMakefile *mf = static_cast<cmMakefile *>(arg);
|
||||
return mf->GetStartOutputDirectory();
|
||||
return mf->GetCurrentBinaryDirectory();
|
||||
}
|
||||
const char* CCONV cmGetCurrentDirectory(void *arg)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user