提交 969af47b 编写于 作者: G gineshidalgo99

CPU default for Mac

上级 973c6674
...@@ -120,7 +120,11 @@ if (WIN32) ...@@ -120,7 +120,11 @@ if (WIN32)
endif (WIN32) endif (WIN32)
# Set the acceleration library # Set the acceleration library
set(GPU_MODE CUDA CACHE STRING "Select the acceleration GPU library or CPU otherwise.") if (APPLE)
set(GPU_MODE CPU_ONLY CACHE STRING "Select the acceleration GPU library or CPU otherwise.")
else (APPLE)
set(GPU_MODE CUDA CACHE STRING "Select the acceleration GPU library or CPU otherwise.")
endif (APPLE)
# Display proper options to user # Display proper options to user
# if (CUDA_FOUND AND OpenCL_FOUND) # if (CUDA_FOUND AND OpenCL_FOUND)
# set_property(CACHE GPU_MODE PROPERTY STRINGS CUDA OPENCL CPU_ONLY) # set_property(CACHE GPU_MODE PROPERTY STRINGS CUDA OPENCL CPU_ONLY)
...@@ -259,7 +263,7 @@ if (APPLE) ...@@ -259,7 +263,7 @@ if (APPLE)
else () else ()
set(Boost_SYSTEM_LIBRARY "") set(Boost_SYSTEM_LIBRARY "")
endif () endif ()
endif () endif (APPLE)
### FIND REQUIRED PACKAGES ### FIND REQUIRED PACKAGES
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules") list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册