cmake/Tests/AliasTarget/commandgenerator.cpp

16 lines
252 B
C++
Raw Normal View History

2013-11-03 12:27:13 +02:00
#include <fstream>
#include "object.h"
2016-07-09 11:21:54 +02:00
int main(int argc, char** argv)
2013-11-03 12:27:13 +02:00
{
std::fstream fout;
fout.open("commandoutput.h", std::ios::out);
if (!fout)
return 1;
fout << "#define COMMANDOUTPUT_DEFINE\n";
fout.close();
return object();
}