|
|
|
@ -199,10 +199,13 @@ elseif(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel")
|
|
|
|
|
list(APPEND CUDA_NVCC_FLAGS ${CMAKE_CXX_FLAGS_RELEASE})
|
|
|
|
|
endif()
|
|
|
|
|
else(NOT WIN32)
|
|
|
|
|
list(APPEND CUDA_NVCC_FLAGS "--compiler-options;/bigobj")
|
|
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
|
|
|
list(APPEND CUDA_NVCC_FLAGS "-g -G --compiler-options;/bigobj")
|
|
|
|
|
list(APPEND CUDA_NVCC_FLAGS "-g -G")
|
|
|
|
|
# match the cl's _ITERATOR_DEBUG_LEVEL
|
|
|
|
|
list(APPEND CUDA_NVCC_FLAGS "-D_DEBUG")
|
|
|
|
|
elseif(CMAKE_BUILD_TYPE STREQUAL "Release")
|
|
|
|
|
list(APPEND CUDA_NVCC_FLAGS "-O3 -DNDEBUG --compiler-options;/bigobj")
|
|
|
|
|
list(APPEND CUDA_NVCC_FLAGS "-O3 -DNDEBUG")
|
|
|
|
|
else()
|
|
|
|
|
message(FATAL "Windows only support Release or Debug build now. Please set visual studio build type to Release/Debug, x64 build.")
|
|
|
|
|
endif()
|
|
|
|
|