summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-12-10 16:03:44 (GMT)
committerBrad King <brad.king@kitware.com>2001-12-10 16:03:44 (GMT)
commitee31c3e0a433c8ed31eac4d8ae898c67c7a51b17 (patch)
tree38243b41866b811c6ec18c7f444d097881da60df /Source/cmMakefile.h
parenta946931f91bfffe8ce06a9924beb424cb0233907 (diff)
downloadCMake-ee31c3e0a433c8ed31eac4d8ae898c67c7a51b17.zip
CMake-ee31c3e0a433c8ed31eac4d8ae898c67c7a51b17.tar.gz
CMake-ee31c3e0a433c8ed31eac4d8ae898c67c7a51b17.tar.bz2
ENH: SUBDIR_DEPENDS command now does nothing. The parallel build functionality is now automatic. Dependencies are setup to force the same build order as a single threaded build, but multiple files in the same directory can be built simultaneously. Also fixed bug with inheriting CMakeLists.txt files when a directory level is skipped.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index d3e9835..44d4d61 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -211,11 +211,6 @@ public:
void AddSubDirectory(const char*);
/**
- * Add a subdirectory dependency.
- */
- void AddSubdirDependency(const char* subdir, const char* dependency);
-
- /**
* Add an include directory to the build.
*/
void AddIncludeDirectory(const char*, bool before = false);
@@ -405,14 +400,6 @@ public:
}
/**
- * Get the subdirectory dependencies for the given subdirectory.
- */
- const std::set<cmStdString>& GetSubdirDepends(const char* subdir)
- {
- return m_SubdirDepends[subdir];
- }
-
- /**
* Get a list of include directories in the build.
*/
std::vector<std::string>& GetIncludeDirectories()
@@ -571,8 +558,6 @@ protected:
{
};
- std::map<cmStdString, StringSet > m_SubdirDepends;
-
// The include and link-library paths. These may have order
// dependency, so they must be vectors (not set).
std::vector<std::string> m_IncludeDirectories;