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

« back to all changes in this revision

Viewing changes to Tests/ExportImport/Import/A/deps_shared_iface.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:
22
22
 
23
23
#ifdef TEST_SUBDIR_LIB
24
24
#include "subdir.h"
 
25
#include "renamed.h"
 
26
#endif
 
27
 
 
28
#ifdef DO_GNU_TESTS
 
29
#ifndef CUSTOM_COMPILE_OPTION
 
30
#error Expected CUSTOM_COMPILE_OPTION
 
31
#endif
25
32
#endif
26
33
 
27
34
int main(int,char **)
31
38
 
32
39
#ifdef TEST_SUBDIR_LIB
33
40
  SubDirObject sdo;
 
41
  Renamed ren;
34
42
#endif
35
43
 
36
44
  return dep.foo() + req.foo()
37
45
#ifdef TEST_SUBDIR_LIB
38
 
                   + sdo.foo()
 
46
                   + sdo.foo() + ren.foo()
39
47
#endif
40
48
                              ;
41
49
}