summaryrefslogtreecommitdiffstats
path: root/Tests/CompileDefinitions/target_prop/usetgt.c
blob: 56823b0898f19ae29eba2dfe8667a9b581a7bd0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef TGT_DEF
#  error TGT_DEF incorrectly not defined
#endif
#ifndef TGT_TYPE_STATIC_LIBRARY
#  error TGT_TYPE_STATIC_LIBRARY incorrectly not defined
#endif
#ifdef TGT_TYPE_EXECUTABLE
#  error TGT_TYPE_EXECUTABLE incorrectly defined
#endif
int main(void)
{
  return 0;
}