Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Tests/AliasTarget/commandgenerator.cpp
3148 views
1
2
#include <fstream>
3
4
#include "object.h"
5
6
int main(int argc, char** argv)
7
{
8
std::ofstream fout("commandoutput.h");
9
if (!fout)
10
return 1;
11
fout << "#define COMMANDOUTPUT_DEFINE\n";
12
fout.close();
13
return object();
14
}
15
16