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