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