FILES-EXTRA_ISPC_TARGET_OBJECTS-all-check.cmake 286 B

1234567891011
  1. set(objs obj1 obj2)
  2. set(targets sse2 sse4 avx avx2)
  3. foreach(o IN LISTS objs)
  4. set(item "objs/${o}\\.ispc\\.(o|obj)")
  5. check_installed("${item}")
  6. foreach(t IN LISTS targets)
  7. set(item "objs/${o}\\.ispc_${t}\\.(o|obj)")
  8. check_installed("${item}")
  9. endforeach()
  10. endforeach()