~ubuntu-branches/ubuntu/utopic/cmake/utopic

« back to all changes in this revision

Viewing changes to Tests/AliasTarget/targetgenerator.cpp

  • Committer: Package Import Robot
  • Author(s): Harald Sitter
  • Date: 2013-10-10 12:54:39 UTC
  • mfrom: (1.14.7)
  • Revision ID: package-import@ubuntu.com-20131010125439-h0ahaj004on6oj92
Tags: 2.8.12-0ubuntu1
New upstream release LP: #1246701

Show diffs side-by-side

added added

removed removed

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