Add TRIGDX prefix to CMake configurable options

This commit is contained in:
Wiebe van Breukelen
2025-08-12 09:52:28 +02:00
parent fda7662148
commit d04fb8933d
4 changed files with 13 additions and 13 deletions

View File

@@ -4,9 +4,9 @@ project(trigdx LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
option(USE_MKL "Enable Intel MKL backend" OFF)
option(USE_GPU "Enable GPU backend" OFF)
option(USE_XSIMD "Enable XSIMD backend" OFF)
option(TRIGDX_USE_MKL "Enable Intel MKL backend" OFF)
option(TRIGDX_USE_GPU "Enable GPU backend" OFF)
option(TRIGDX_USE_XSIMD "Enable XSIMD backend" OFF)
include_directories(${PROJECT_SOURCE_DIR}/include)