summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeCommands/target_link_libraries/SubDirB/SubDirB.c
blob: 6e567298ca1be781d047aac728b8d687adf6aa6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifdef DEF_SameNameImportedSubDirA
#  error "DEF_SameNameImportedSubDirA is defined but should not be!"
#endif
#ifdef DEF_SameNameImportedSubDirB
#  error "DEF_SameNameImportedSubDirB is defined but should not be!"
#endif
#ifndef DEF_TopDirImported
#  error "DEF_TopDirImported is not defined but should be!"
#endif

int main(void)
{
  return 0;
}