Merge pull request #613 from blahgeek/cuda-compiler-version
Properly set cuda compiler version #613
This commit is contained in:
commit
ff790f3593
@ -146,8 +146,12 @@
|
|||||||
# endif
|
# endif
|
||||||
# if CUDA_VERSION < 7000
|
# if CUDA_VERSION < 7000
|
||||||
# error "GLM requires CUDA 7.0 or higher"
|
# error "GLM requires CUDA 7.0 or higher"
|
||||||
# else
|
# elif (CUDA_VERSION >= 7000 && CUDA_VERSION < 7500)
|
||||||
# define GLM_COMPILER GLM_COMPILER_CUDA
|
# define GLM_COMPILER GLM_COMPILER_CUDA70
|
||||||
|
# elif (CUDA_VERSION >= 7500 && CUDA_VERSION < 8000)
|
||||||
|
# define GLM_COMPILER GLM_COMPILER_CUDA75
|
||||||
|
# elif (CUDA_VERSION >= 8000)
|
||||||
|
# define GLM_COMPILER GLM_COMPILER_CUDA80
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
// Clang
|
// Clang
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user