mirror of
https://github.com/g-truc/glm.git
synced 2025-04-06 14:05:01 +00:00
properly set cuda compiler version
This commit is contained in:
parent
f269730d4b
commit
0b48eecae8
1 changed files with 6 additions and 2 deletions
|
@ -146,8 +146,12 @@
|
|||
# endif
|
||||
# if CUDA_VERSION < 7000
|
||||
# error "GLM requires CUDA 7.0 or higher"
|
||||
# else
|
||||
# define GLM_COMPILER GLM_COMPILER_CUDA
|
||||
# elif (CUDA_VERSION >= 7000 && CUDA_VERSION < 7500)
|
||||
# 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
|
||||
|
||||
// Clang
|
||||
|
|
Loading…
Add table
Reference in a new issue