https://github.com/Kitware/CMake
Raw File
Tip revision: fbe6cd1596bf280edd49aeb8f981f99d7cd8beb3 authored by Brad King on 17 April 2018, 12:33:46 UTC
CMake 3.11.1
Tip revision: fbe6cd1
targetgenerator.cpp

#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;
}
back to top