Skip to content

Commit

Permalink
Problem: Out-of-sync with ZProject
Browse files Browse the repository at this point in the history
Solution: Run `gsl project.xml`
  • Loading branch information
BHare1985 committed Apr 5, 2024
1 parent 9d3c0df commit 71f9f29
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,13 @@ set(OPTIONAL_LIBRARIES_STATIC)
########################################################################
# GSL dependency
########################################################################
find_package(gsl REQUIRED)
IF (GSL_FOUND)
ELSE (GSL_FOUND)
IF (NOT gsl_FOUND)
find_package(gsl REQUIRED)
ENDIF(NOT gsl_FOUND)
IF (gsl_FOUND)
ELSE (gsl_FOUND)
message( FATAL_ERROR "gsl not found." )
ENDIF (GSL_FOUND)
ENDIF (gsl_FOUND)

########################################################################
# version
Expand Down
2 changes: 1 addition & 1 deletion doc/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ MAN1 =
MAN3 =
# Project overview, written by a human after initial skeleton:
# NOTE: stub doc/zproject.adoc is generated by GSL from project.xml
# and then comitted to SCM and maintained manually to describe the
# and then committed to SCM and maintained manually to describe the
# project (section 7 = Overview, conventions, and miscellaneous).
MAN7 = zproject.7
MAN_DOC = $(MAN1) $(MAN3) $(MAN7)
Expand Down

0 comments on commit 71f9f29

Please sign in to comment.