2019-07-02 15:56:28 +00:00
|
|
|
include (src/backend/cpu/cpu.cmake)
|
2019-08-12 18:44:52 +00:00
|
|
|
include (src/backend/opencl/opencl.cmake)
|
2019-10-23 09:37:56 +00:00
|
|
|
include (src/backend/cuda/cuda.cmake)
|
2019-07-13 15:15:53 +00:00
|
|
|
include (src/backend/common/common.cmake)
|
2019-07-02 15:56:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
set(HEADERS_BACKEND
|
2019-07-13 15:15:53 +00:00
|
|
|
"${HEADERS_BACKEND_COMMON}"
|
|
|
|
"${HEADERS_BACKEND_CPU}"
|
2019-08-12 18:44:52 +00:00
|
|
|
"${HEADERS_BACKEND_OPENCL}"
|
2019-10-23 09:37:56 +00:00
|
|
|
"${HEADERS_BACKEND_CUDA}"
|
2019-07-02 15:56:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(SOURCES_BACKEND
|
2019-07-13 15:15:53 +00:00
|
|
|
"${SOURCES_BACKEND_COMMON}"
|
|
|
|
"${SOURCES_BACKEND_CPU}"
|
2019-08-12 18:44:52 +00:00
|
|
|
"${SOURCES_BACKEND_OPENCL}"
|
2019-10-23 09:37:56 +00:00
|
|
|
"${SOURCES_BACKEND_CUDA}"
|
2019-07-02 15:56:28 +00:00
|
|
|
)
|