Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/device/CMakeLists.txt
| Show All 19 Lines | else() | ||||
| ) | ) | ||||
| add_definitions(-DCYCLES_CUDA_NVCC_EXECUTABLE="${CUDA_NVCC_EXECUTABLE}") | add_definitions(-DCYCLES_CUDA_NVCC_EXECUTABLE="${CUDA_NVCC_EXECUTABLE}") | ||||
| endif() | endif() | ||||
| set(SRC | set(SRC | ||||
| device.cpp | device.cpp | ||||
| device_cpu.cpp | device_cpu.cpp | ||||
| device_cuda.cpp | device_cuda.cpp | ||||
| device_denoising.cpp | |||||
| device_multi.cpp | device_multi.cpp | ||||
| device_opencl.cpp | device_opencl.cpp | ||||
| device_split_kernel.cpp | device_split_kernel.cpp | ||||
| device_task.cpp | device_task.cpp | ||||
| ) | ) | ||||
| set(SRC_OPENCL | set(SRC_OPENCL | ||||
| opencl/opencl.h | opencl/opencl.h | ||||
| opencl/opencl_base.cpp | opencl/opencl_base.cpp | ||||
| opencl/opencl_mega.cpp | opencl/opencl_mega.cpp | ||||
| opencl/opencl_split.cpp | opencl/opencl_split.cpp | ||||
| opencl/opencl_util.cpp | opencl/opencl_util.cpp | ||||
| ) | ) | ||||
| if(WITH_CYCLES_NETWORK) | if(WITH_CYCLES_NETWORK) | ||||
| list(APPEND SRC | list(APPEND SRC | ||||
| device_network.cpp | device_network.cpp | ||||
| ) | ) | ||||
| endif() | endif() | ||||
| set(SRC_HEADERS | set(SRC_HEADERS | ||||
| device.h | device.h | ||||
| device_denoising.h | |||||
| device_memory.h | device_memory.h | ||||
| device_intern.h | device_intern.h | ||||
| device_network.h | device_network.h | ||||
| device_split_kernel.h | device_split_kernel.h | ||||
| device_task.h | device_task.h | ||||
| ) | ) | ||||
| add_definitions(${GL_DEFINITIONS}) | add_definitions(${GL_DEFINITIONS}) | ||||
| Show All 17 Lines | |||||