You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
194 B
9 lines
194 B
3 years ago
|
enable_language(ISPC)
|
||
|
enable_language(CXX)
|
||
|
set(CMAKE_VERBOSE_MAKEFILE TRUE)
|
||
|
|
||
|
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
|
||
|
set(CMAKE_ISPC_FLAGS "--arch=x86")
|
||
|
endif()
|
||
|
add_executable(main main.cxx test.ispc)
|