diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-06-06 17:58:18 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-06-06 17:58:18 (GMT) |
commit | 37801ddaaec78597d5ac000bf60f6948ff865d06 (patch) | |
tree | a39ab5ff5c125d6e2c5dfb4235cf041518fbd266 /Source/cmMakefile.h | |
parent | 355278324e0e96048e27195249161c1c68a7c412 (diff) | |
download | CMake-37801ddaaec78597d5ac000bf60f6948ff865d06.zip CMake-37801ddaaec78597d5ac000bf60f6948ff865d06.tar.gz CMake-37801ddaaec78597d5ac000bf60f6948ff865d06.tar.bz2 |
added enable testing deprecated some commands
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index fccd779..c5f5f36 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -112,17 +112,6 @@ public: void GenerateMakefile(); /** - * Produce the output testfile. This produces a file in the build directory - * called Testfile with a syntax similar to CMakeLists.txt. It contains - * the SUBDIRS() and ADD_TEST() commands from the source CMakeLists.txt - * file with CMake variables expanded. Only the subdirs and tests - * within the valid control structures are replicated in Testfile - * (i.e. SUBDIRS() and ADD_TEST() commands within IF() commands that are - * not entered by CMake are not replicated in Testfile). - */ - void GenerateTestfile(); - - /** * Print the object state to std::cout. */ void Print() const; @@ -223,11 +212,6 @@ public: void AddDefinition(const char* name, bool); /** - * Add a test to the build. - */ - void AddTest(const std::vector<std::string> &args); - - /** * Specify the name of the project for this build. */ void SetProjectName(const char*); @@ -526,7 +510,6 @@ protected: std::vector<std::string> m_Utilities; std::vector<std::string> m_UtilityDirectories; std::vector<std::string> m_ListFiles; // list of command files loaded - std::vector<std::vector<std::string> > m_Tests; // list of tests and args cmTarget::LinkLibraries m_LinkLibraries; |