summaryrefslogtreecommitdiff
path: root/Tests/CMakeCommands/target_link_libraries/TopDir.c
blob: 708b5c1fa9ada4a30350e634d9f79521efbb8ecf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef DEF_SameNameImportedSubDirA
#  error "DEF_SameNameImportedSubDirA is not defined but should be!"
#endif
#ifndef DEF_SameNameImportedSubDirB
#  error "DEF_SameNameImportedSubDirB is not defined but should be!"
#endif
#ifndef DEF_SameNameImported2SubDirA
#  error "DEF_SameNameImported2SubDirA is not defined but should be!"
#endif
#ifndef DEF_SameNameImported2SubDirB
#  error "DEF_SameNameImported2SubDirB is not defined but should be!"
#endif
#ifdef DEF_TopDirImported
#  error "DEF_TopDirImported is defined but should not be!"
#endif
#ifdef DEF_SubDirC1
#  error "DEF_SubDirC1 defined but should not be"
#endif
#ifdef DEF_SubDirC2
#  error "DEF_SubDirC2 defined but should not be"
#endif

int main(void)
{
  return 0;
}