Skip to content

Commit b928564

Browse files
authored
Merge pull request #1330 from tblattner/patch-1
Fix typo with GSL_FOUND
2 parents 7fdba3a + de387c4 commit b928564

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)