Skip to content

Commit

Permalink
Sacado: There is no such thing as an 'INTEGER' CMake cache var type
Browse files Browse the repository at this point in the history
CMake 3.17 warns this is converted, implicity, to type 'STRING'.  There is no
such thing as an 'INTEGER' CMake cache var type.  No reason to pretend there
is.
  • Loading branch information
bartlettroscoe committed Sep 3, 2021
1 parent 6d9580a commit 5088b69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/stokhos/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ ELSE()
ENDIF()

IF(HAVE_STOKHOS_ENSEMBLE_GEMV)
SET(Stokhos_Ensemble_GEMV_Cache_Size 180224 CACHE INTEGER "Cache size used in the ensemble GEMV")
SET(Stokhos_Ensemble_GEMV_Team_Size 1 CACHE INTEGER "Team size used in the ensemble GEMV")
SET(Stokhos_Ensemble_GEMV_Cache_Size 180224 CACHE STRING "Cache size used in the ensemble GEMV")
SET(Stokhos_Ensemble_GEMV_Team_Size 1 CACHE STRING "Team size used in the ensemble GEMV")
ENDIF()

# FIXME: Remove this hard-coded setting. We always have C++11 now.
Expand Down

0 comments on commit 5088b69

Please sign in to comment.