File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -101,11 +101,13 @@ set(OPTIONAL_LIBRARIES_STATIC)
101
101
########################################################################
102
102
# GSL dependency
103
103
########################################################################
104
- find_package (gsl REQUIRED)
105
- IF (GSL_FOUND)
106
- ELSE (GSL_FOUND)
104
+ IF (NOT gsl_FOUND)
105
+ find_package (gsl REQUIRED)
106
+ ENDIF (NOT gsl_FOUND)
107
+ IF (gsl_FOUND)
108
+ ELSE (gsl_FOUND)
107
109
message ( FATAL_ERROR "gsl not found." )
108
- ENDIF (GSL_FOUND )
110
+ ENDIF (gsl_FOUND )
109
111
110
112
########################################################################
111
113
# version
Original file line number Diff line number Diff line change 11
11
MAN3 =
12
12
# Project overview, written by a human after initial skeleton:
13
13
# NOTE: stub doc/zproject.adoc is generated by GSL from project.xml
14
- # and then comitted to SCM and maintained manually to describe the
14
+ # and then committed to SCM and maintained manually to describe the
15
15
# project (section 7 = Overview, conventions, and miscellaneous).
16
16
MAN7 = zproject.7
17
17
MAN_DOC = $(MAN1 ) $(MAN3 ) $(MAN7 )
You can’t perform that action at this time.
0 commit comments