2002-03-29 22:20:32 +03:00
|
|
|
#include <Library/cmTestLibraryConfigure.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2001-08-23 21:57:45 +04:00
|
|
|
int file2()
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
2002-03-29 22:20:32 +03:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|