cmake/Tests/AliasTarget/commandgenerator.cpp

15 lines
225 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
{
2016-10-30 18:24:19 +01:00
std::ofstream fout("commandoutput.h");
2013-11-03 12:27:13 +02:00
if (!fout)
return 1;
fout << "#define COMMANDOUTPUT_DEFINE\n";
fout.close();
return object();
}