blob: 3362414e03890f53d92dc4407c704b7367993d5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <fstream>
int main(int argc, char **argv)
{
std::fstream fout;
fout.open("targetoutput.h", std::ios::out);
if (!fout)
return 1;
fout << "#define TARGETOUTPUT_DEFINE\n";
fout.close();
return 0;
}
|