Update CMake with better binary name and source location

This commit is contained in:
Tom Deakin 2016-05-03 11:45:25 +01:00
parent a355acf2ee
commit 8ce15a28aa

View File

@ -8,21 +8,21 @@ set(gpu-stream_VERSION_MINOR 0)
list(APPEND CMAKE_CXX_FLAGS --std=c++11)
configure_file(src/common.h.in src/common.h)
configure_file(common.h.in common.h)
find_package(CUDA QUIET)
if (${CUDA_FOUND})
cuda_add_executable(cuda.exe src/main.cpp src/CUDAStream.cu)
target_compile_definitions(cuda.exe PUBLIC CUDA)
cuda_add_executable(gpu-stream-cuda main.cpp CUDAStream.cu)
target_compile_definitions(gpu-stream-cuda PUBLIC CUDA)
else (${CUDA_FOUND})
message("Skipping CUDA...")
endif (${CUDA_FOUND})
find_package(OpenCL QUIET)
if (${OpenCL_FOUND})
add_executable(ocl.exe src/main.cpp src/OCLStream.cpp)
target_compile_definitions(ocl.exe PUBLIC OCL)
target_link_libraries(ocl.exe ${OpenCL_LIBRARY})
add_executable(gpu-stream-ocl main.cpp OCLStream.cpp)
target_compile_definitions(gpu-stream-ocl PUBLIC OCL)
target_link_libraries(gpu-stream-ocl ${OpenCL_LIBRARY})
else (${OpenCL_FOUND})
message("Skipping OpenCL...")
endif (${OpenCL_FOUND})