Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
moose
Manage
Activity
Members
Labels
Plan
Issues
9
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sahil Moza
moose
Commits
1adfde49
Commit
1adfde49
authored
8 years ago
by
Dilawar Singh
Browse files
Options
Downloads
Patches
Plain Diff
FindGSL also looks for GSL_VERSION now.
parent
1654efd5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!213
Update rmoogli.py
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
moose-core/VERSION
+1
-1
1 addition, 1 deletion
moose-core/VERSION
moose-core/cmake_modules/FindGSL.cmake
+15
-7
15 additions, 7 deletions
moose-core/cmake_modules/FindGSL.cmake
with
16 additions
and
8 deletions
moose-core/VERSION
+
1
−
1
View file @
1adfde49
3.1.1-47-gf27beb9
\ No newline at end of file
3.1.1
\ No newline at end of file
This diff is collapsed.
Click to expand it.
moose-core/cmake_modules/FindGSL.cmake
+
15
−
7
View file @
1adfde49
...
...
@@ -4,8 +4,9 @@
#
# GSL_FOUND = system has GSL lib
#
# GSL_LIBRARIES = full path to the libraries
# on Unix/Linux with additional linker flags from "gsl-config --libs"
# GSL_VERSION = gsl version
#
# GSL_LIBRARIES = name of the libraries.
#
# GSL_INCLUDE_DIRS = where to find headers
#
...
...
@@ -73,7 +74,7 @@ ELSE(WIN32)
/opt/lib /opt/lib64
)
FIND_PATH
(
GSL_INCLUDE_DIRS NAMES gsl/gsl_blas.h
gsl/gsl.h
FIND_PATH
(
GSL_INCLUDE_DIRS NAMES gsl/gsl_blas.h
PATHS
$ENV{GSL_ROOT_DIR}/include $ENV{GSL_ROOT_DIR}/include
/opt/include /opt/include
...
...
@@ -85,11 +86,18 @@ ELSE(WIN32)
ENDIF
(
WIN32
)
# FIND version
file
(
READ
"
${
GSL_INCLUDE_DIRS
}
/gsl/gsl_version.h"
GSL_VERSION_TEXT
)
string
(
REGEX REPLACE
".*define[ ]+GSL_MAJOR_VERSION[ ]*([0-9]+).*"
"
\\
1"
GSL_MAJOR_VERSION
"
${
GSL_VERSION_TEXT
}
"
)
string
(
REGEX REPLACE
".*define[ ]+GSL_MINOR_VERSION[ ]*([0-9]+).*"
"
\\
1"
GSL_MINOR_VERSION
"
${
GSL_VERSION_TEXT
}
"
)
set
(
GSL_VERSION
"
${
GSL_MAJOR_VERSION
}
.
${
GSL_MINOR_VERSION
}
"
)
IF
(
GSL_LIBRARIES
)
IF
(
GSL_INCLUDE_DIRS
OR GSL_CXX_FLAGS
)
IF
(
GSL_LIBRARIES
AND GSL_VERSION
)
IF
(
GSL_INCLUDE_DIRS
)
SET
(
GSL_FOUND 1
)
MESSAGE
(
STATUS
"Found GSL
${
GSL_LIBRARIES
}
"
)
ENDIF
(
GSL_INCLUDE_DIRS
OR GSL_CXX_FLAGS
)
ENDIF
(
GSL_LIBRARIES
)
ENDIF
(
GSL_INCLUDE_DIRS
)
ENDIF
()
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment