blob: 5cb01a729e1a28954a37ab79cfb4fb1db88e3250 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/*=========================================================================
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 "cmAddCustomCommandCommand.h"
// cmAddCustomCommandCommand
bool cmAddCustomCommandCommand::InitialPass(std::vector<std::string> const& argsIn)
{
if (argsIn.size()< 9)
{
this->SetError("called with wrong number of arguments.");
return false;
}
std::vector<std::string> args = argsIn;
std::vector<std::string> commandArgs;
std::vector<std::string> depends;
std::vector<std::string> outputs;
const char* source = args[0].c_str();
const char* command = args[1].c_str();
if(args[2] != "ARGS")
{
this->SetError("Wrong syntax. The third argument should be ARGS");
return false;
}
int cc=3;
while(args[cc] != "DEPENDS" && cc < argsIn.size())
{
commandArgs.push_back(args[cc]);
cc++;
}
if(cc == argsIn.size()-1)
{
this->SetError("Wrong syntax. Missing DEPENDS.");
return false;
}
cc ++ ; // Skip DEPENDS
while(args[cc] != "OUTPUTS" && cc < argsIn.size())
{
depends.push_back(args[cc]);
cc++;
}
if(cc == argsIn.size()-1)
{
this->SetError("Wrong syntax. Missing OUTPUTS.");
return false;
}
cc ++; // Skip OUTPUTS
while(cc < argsIn.size()-1)
{
outputs.push_back(args[cc]);
cc++;
}
const char *target = args[argsIn.size()-1].c_str();
m_Makefile->AddCustomCommand( source, command, commandArgs,
depends, outputs, target );
return true;
}
|