cmEnableTestingCommand.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*=========================================================================
  2. Program: Insight Segmentation & Registration Toolkit
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2001 Insight Consortium
  8. All rights reserved.
  9. Redistribution and use in source and binary forms, with or without
  10. modification, are permitted provided that the following conditions are met:
  11. * Redistributions of source code must retain the above copyright notice,
  12. this list of conditions and the following disclaimer.
  13. * Redistributions in binary form must reproduce the above copyright notice,
  14. this list of conditions and the following disclaimer in the documentation
  15. and/or other materials provided with the distribution.
  16. * The name of the Insight Consortium, nor the names of any consortium members,
  17. nor of any contributors, may be used to endorse or promote products derived
  18. from this software without specific prior written permission.
  19. * Modified source versions must be plainly marked as such, and must not be
  20. misrepresented as being the original software.
  21. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS ``AS IS''
  22. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24. ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
  25. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  27. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  28. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  29. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. =========================================================================*/
  32. #ifndef cmEnableTestingCommand_h
  33. #define cmEnableTestingCommand_h
  34. #include "cmStandardIncludes.h"
  35. #include "cmCommand.h"
  36. /** \class cmEnableTestingCommand
  37. * \brief Enable testing for this directory and below.
  38. *
  39. * Produce the output testfile. This produces a file in the build directory
  40. * called CMakeTestfile with a syntax similar to CMakeLists.txt. It contains
  41. * the SUBDIRS() and ADD_TEST() commands from the source CMakeLists.txt
  42. * file with CMake variables expanded. Only the subdirs and tests
  43. * within the valid control structures are replicated in Testfile
  44. * (i.e. SUBDIRS() and ADD_TEST() commands within IF() commands that are
  45. * not entered by CMake are not replicated in Testfile).
  46. */
  47. class cmEnableTestingCommand : public cmCommand
  48. {
  49. public:
  50. /**
  51. * This is a virtual constructor for the command.
  52. */
  53. virtual cmCommand* Clone()
  54. {
  55. return new cmEnableTestingCommand;
  56. }
  57. /**
  58. * This determines if the command gets propagated down
  59. * to makefiles located in subdirectories.
  60. */
  61. virtual bool IsInherited() {return true;}
  62. /**
  63. * This is called when the command is first encountered in
  64. * the CMakeLists.txt file.
  65. */
  66. virtual bool InitialPass(std::vector<std::string> const& args) {
  67. return true;};
  68. /**
  69. * This is called at the end after all the information
  70. * specified by the command is accumulated. Most commands do
  71. * not implement this method. At this point, reading and
  72. * writing to the cache can be done.
  73. */
  74. virtual void FinalPass();
  75. /**
  76. * The name of the command as specified in CMakeList.txt.
  77. */
  78. virtual const char* GetName() { return "ENABLE_TESTING";}
  79. /**
  80. * Succinct documentation.
  81. */
  82. virtual const char* GetTerseDocumentation()
  83. {
  84. return "Enable testing for this directory and below.";
  85. }
  86. /**
  87. * More documentation.
  88. */
  89. virtual const char* GetFullDocumentation()
  90. {
  91. return
  92. "ENABLE_TESTING()\n"
  93. "Enables testing for this directory and below. See also the ADD_TEST command.";
  94. }
  95. cmTypeMacro(cmEnableTestingCommand, cmCommand);
  96. };
  97. #endif