diff options
Diffstat (limited to 'Tests/ISPC/ObjectLibrary/CMakeLists.txt')
-rw-r--r-- | Tests/ISPC/ObjectLibrary/CMakeLists.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Tests/ISPC/ObjectLibrary/CMakeLists.txt b/Tests/ISPC/ObjectLibrary/CMakeLists.txt new file mode 100644 index 0000000..edfbdd8 --- /dev/null +++ b/Tests/ISPC/ObjectLibrary/CMakeLists.txt @@ -0,0 +1,14 @@ + +cmake_minimum_required(VERSION 3.18) +project(ISPCObjectLibrary CXX ISPC) + +set(CMAKE_NINJA_FORCE_RESPONSE_FILE ON) + +add_library(ispc_objects OBJECT simple.ispc) + +target_compile_options(ispc_objects PRIVATE "$<$<COMPILE_LANGUAGE:ISPC>:--target=sse2-i32x4;--arch=x86-64>") +target_include_directories(ispc_objects INTERFACE "${CMAKE_CURRENT_BINARY_DIR}") +set_target_properties(ispc_objects PROPERTIES POSITION_INDEPENDENT_CODE ON) + +add_executable(ISPCObjectLibrary main.cxx) +target_link_libraries(ISPCObjectLibrary PRIVATE ispc_objects) |