blob: cc9b9c5509b4cc2ce548b646f39efa3f88aa0097 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2000 National Library of Medicine
All rights reserved.
See COPYRIGHT.txt for copyright details.
=========================================================================*/
#include "cmTestsCommand.h"
// cmExecutableCommand
bool cmTestsCommand::Invoke(std::vector<std::string>& args)
{
// does nothing in CMake
return true;
}
|