mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
feb14ea872
This adds the UserMacros.cmake support needed.
17 lines
694 B
CMake
17 lines
694 B
CMake
########################################################
|
|
# Include file for user options
|
|
########################################################
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Option to Build with User Defined Values
|
|
#-----------------------------------------------------------------------------
|
|
MACRO (MACRO_USER_DEFINED_LIBS)
|
|
SET (USER_DEFINED_VALUE "FALSE")
|
|
ENDMACRO (MACRO_USER_DEFINED_LIBS)
|
|
|
|
#-------------------------------------------------------------------------------
|
|
OPTION (BUILD_USER_DEFINED_LIBS "Build With User Defined Values" OFF)
|
|
IF (BUILD_USER_DEFINED_LIBS)
|
|
MACRO_USER_DEFINED_LIBS ()
|
|
ENDIF (BUILD_USER_DEFINED_LIBS)
|
|
|