Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-01-20 08:08:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-20 08:08:52 +0300
commitb2037464e420e4171ff2238f35284e156dbcf110 (patch)
treefb3587f52dbb7a0daaea4e660a89b0edcf62f930 /intern/cycles/test
parentbe970c03c26558ec5bda04b2c5de67b456ad09b1 (diff)
CMake: add missing headers
Resolves 'cmake_consistency_check' reports.
Diffstat (limited to 'intern/cycles/test')
-rw-r--r--intern/cycles/test/CMakeLists.txt8
1 files changed, 6 insertions, 2 deletions
diff --git a/intern/cycles/test/CMakeLists.txt b/intern/cycles/test/CMakeLists.txt
index cf8ebc2a1d9..51cc47fa704 100644
--- a/intern/cycles/test/CMakeLists.txt
+++ b/intern/cycles/test/CMakeLists.txt
@@ -55,11 +55,15 @@ set(SRC
)
if(CXX_HAS_AVX)
- list(APPEND SRC util_avxf_avx_test.cpp)
+ list(APPEND SRC
+ util_avxf_avx_test.cpp
+ )
set_source_files_properties(util_avxf_avx_test.cpp PROPERTIES COMPILE_FLAGS "${CYCLES_AVX_KERNEL_FLAGS}")
endif()
if(CXX_HAS_AVX2)
- list(APPEND SRC util_avxf_avx2_test.cpp)
+ list(APPEND SRC
+ util_avxf_avx2_test.cpp
+ )
set_source_files_properties(util_avxf_avx2_test.cpp PROPERTIES COMPILE_FLAGS "${CYCLES_AVX2_KERNEL_FLAGS}")
endif()