Skip to content

Commit de387c4

Browse files
authored
Fix typo with GSL_FOUND
The Findgsl.cmake defined "GSL_FOUND", this fix uses the same case as seen in the .cmake file.
1 parent 7fdba3a commit de387c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ set(OPTIONAL_LIBRARIES_STATIC)
102102
# GSL dependency
103103
########################################################################
104104
find_package(gsl REQUIRED)
105-
IF (gsl_FOUND)
106-
ELSE (gsl_FOUND)
105+
IF (GSL_FOUND)
106+
ELSE (GSL_FOUND)
107107
message( FATAL_ERROR "gsl not found." )
108-
ENDIF (gsl_FOUND)
108+
ENDIF (GSL_FOUND)
109109

110110
########################################################################
111111
# version

0 commit comments

Comments
 (0)