Skip to content
Snippets Groups Projects
Commit 21eb02e0 authored by 数学の武士's avatar 数学の武士
Browse files

.

parent 565d53ec
No related branches found
No related tags found
No related merge requests found
...@@ -17,10 +17,19 @@ endif(INCLUDE_CUDA) ...@@ -17,10 +17,19 @@ endif(INCLUDE_CUDA)
set(SOURCES_CXX set(SOURCES_CXX
src/MemoryProcessing.cpp src/MemoryProcessing.cpp
) )
set(HEADERS_CXX
include/MemoryProcessing.h
)
if(INCLUDE_CUDA) if(INCLUDE_CUDA)
set(SOURCES_CU set(SOURCES_CU
src/MemoryProcessing.cu src/MemoryProcessing.cu
) )
set(HEADERS_CU
include/MemoryProcessing.cuh
)
endif(INCLUDE_CUDA) endif(INCLUDE_CUDA)
add_library(memproc STATIC ${SOURCES_CU} ${SOURCES_CXX}) set(SOURCES ${SOURCES_CU} ${SOURCES_CXX})
\ No newline at end of file set(HEADERS ${HEADERS_CU} ${HEADERS_CXX})
add_library(memproc STATIC ${HEADERS} ${SOURCES})
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment