CMake/Tests/CustomCommand/generator.cxx
Brad King c7d84b21c6 BUG: Do not escape shell operators when generating command lines.
- See bug#6868.
  - Update CustomCommand test to check.
2008-04-29 15:34:49 -04:00

20 lines
410 B
C++

#include <stdio.h>
int main(int argc, char *argv[])
{
if ( argc < 2 )
{
fprintf(stderr, "Usage: %s <file>\n", argv[0]);
return 1;
}
FILE *fp = fopen(argv[1],"w");
#ifdef GENERATOR_EXTERN
fprintf(fp,"int generated() { return 3; }\n");
#else
fprintf(fp,"extern int gen_redirect(void);\n");
fprintf(fp,"int generated() { return gen_redirect(); }\n");
#endif
fclose(fp);
return 0;
}