2017-04-18 03:32:16 +08:00
|
|
|
#
|
|
|
|
# Copyright by The HDF Group.
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# This file is part of HDF5. The full HDF5 copyright notice, including
|
|
|
|
# terms governing use, modification, and redistribution, is contained in
|
2024-10-19 12:13:04 +08:00
|
|
|
# the LICENSE file, which can be found at the root of the source code
|
2021-02-17 22:52:36 +08:00
|
|
|
# distribution tree, or in https://www.hdfgroup.org/licenses.
|
2017-04-18 03:32:16 +08:00
|
|
|
# If you do not have access to either file, you may request a copy from
|
|
|
|
# help@hdfgroup.org.
|
|
|
|
#
|
2013-06-11 01:46:48 +08:00
|
|
|
########################################################
|
|
|
|
# Include file for user options
|
|
|
|
########################################################
|
|
|
|
|
2013-09-20 00:38:08 +08:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
#------------------- E X A M P L E B E G I N--------------------------------
|
2013-06-11 01:46:48 +08:00
|
|
|
#-----------------------------------------------------------------------------
|
2013-06-18 00:43:33 +08:00
|
|
|
# Option to Build with User Defined Values
|
2013-06-11 04:39:00 +08:00
|
|
|
#-----------------------------------------------------------------------------
|
2017-03-02 04:47:53 +08:00
|
|
|
macro (MACRO_USER_DEFINED_LIBS)
|
2014-03-12 05:14:57 +08:00
|
|
|
set (USER_DEFINED_VALUE "FALSE")
|
2017-03-02 04:47:53 +08:00
|
|
|
endmacro ()
|
2013-06-18 00:43:33 +08:00
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
2014-03-12 05:14:57 +08:00
|
|
|
option (BUILD_USER_DEFINED_LIBS "Build With User Defined Values" OFF)
|
|
|
|
if (BUILD_USER_DEFINED_LIBS)
|
2013-06-18 00:43:33 +08:00
|
|
|
MACRO_USER_DEFINED_LIBS ()
|
2017-01-11 07:09:53 +08:00
|
|
|
endif ()
|
2013-09-20 00:38:08 +08:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
#------------------- E X A M P L E E N D -----------------------------------
|
|
|
|
#-----------------------------------------------------------------------------
|