1
0

file2.cxx 273 B

1234567891011121314151617181920212223
  1. #include <Library/cmTestLibraryConfigure.h>
  2. #include <string.h>
  3. int file2()
  4. {
  5. return 1;
  6. }
  7. int PropertyTest()
  8. {
  9. int ret = 1;
  10. #ifndef ISABS
  11. ret = 0;
  12. #endif
  13. #ifndef WRAPEX
  14. ret = 0;
  15. #endif
  16. if(strcmp(FLAGS,"-foo -bar") != 0)
  17. {
  18. ret =0;
  19. }
  20. return ret;
  21. }