forked from zeromq/zproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Findgsl.cmake
24 lines (20 loc) · 833 Bytes
/
Findgsl.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
################################################################################
# THIS FILE IS 100% GENERATED BY ZPROJECT; DO NOT EDIT EXCEPT EXPERIMENTALLY #
# Read the zproject/README.md for information about making permanent changes. #
################################################################################
find_program (
GSL_BIN
gsl
)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(
GSL
REQUIRED_VARS GSL_BIN
)
mark_as_advanced(
GSL_FOUND
)
################################################################################
# THIS FILE IS 100% GENERATED BY ZPROJECT; DO NOT EDIT EXCEPT EXPERIMENTALLY #
# Read the zproject/README.md for information about making permanent changes. #
################################################################################