allow to enalbe wich parts of DKS to compile trough cmake flags
This commit is contained in:
@ -38,6 +38,18 @@ IF (Boost_FOUND)
|
||||
LINK_DIRECTORIES(${Boost_LIBRARY_DIRS})
|
||||
ENDIF (Boost_FOUND)
|
||||
|
||||
#include OPAL, musrfit or pet kernels
|
||||
OPTION(DKS_FULL "Compile DKS with full library" OFF)
|
||||
OPTION(ENABLE_OPAL "Compile DKS with OPAL kernels" OFF)
|
||||
OPTION(ENABLE_MUSR "Compile DKS with musrfit kernels" OFF)
|
||||
OPTION(ENABLE_PET "Compile DKS with PET reconstruction kernels" OFF)
|
||||
|
||||
IF (DKS_FULL)
|
||||
SET(ENABLE_OPAL ON)
|
||||
SET(ENABLE_MUSR ON)
|
||||
SET(ENABLE_PET ON)
|
||||
ENDIF(DKS_FULL)
|
||||
|
||||
#find clFFT
|
||||
OPTION (ENABLE_AMD "Enable AMD libraries" OFF)
|
||||
IF (ENABLE_AMD)
|
||||
|
Reference in New Issue
Block a user