Skip to content

Commit

Permalink
CMakeLists.txt: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
WolframRhodium committed Mar 10, 2024
1 parent f7b9413 commit 5e4e26c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ cmake_minimum_required(VERSION 3.22.0)

project(vs-dfttest2 VERSION 0.1 LANGUAGES CXX)

set(ENABLE_CUDA OFF CACHE BOOL "Whether to compile with CUDA backends")
set(ENABLE_CPU ON CACHE BOOL "Whether to compile with x86 backends")
set(ENABLE_GCC OFF CACHE BOOL "Whether to compile with gcc vector extension backends")
set(ENABLE_HIP OFF CACHE BOOL "Whether to compile with HIPRTC backends")
set(ENABLE_CUDA ON CACHE BOOL "Whether to compile with CUDA backends")
set(ENABLE_CPU ON CACHE BOOL "Whether to compile with x86 backend")
set(ENABLE_GCC OFF CACHE BOOL "Whether to compile with gcc vector extension backend")
set(ENABLE_HIP OFF CACHE BOOL "Whether to compile with HIP backends")

if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build" FORCE)
Expand Down

0 comments on commit 5e4e26c

Please sign in to comment.