summaryrefslogtreecommitdiffstats
path: root/Tests/ComplexOneConfig/Library/file2.cxx
blob: 29bc9d8cdd9cdecc2fb89b46cfb5024eaba2d1d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <Library/cmTestLibraryConfigure.h>
#include <string.h>

int file2()
{
  return 1;
}

int PropertyTest()
{
  int ret = 1;
#ifndef ISABS
  ret = 0;
#endif
#ifndef WRAPEX
  ret = 0;
#endif
  if(strcmp(FLAGS,"-foo -bar") != 0)
    {
    ret  =0;
    }
  return ret;
}