summaryrefslogtreecommitdiffstats
path: root/config/cmake/UserMacros
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-03-27 17:53:01 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-03-27 17:53:01 (GMT)
commit096aac122ed6b6e8d07a30330bd95992887cd2be (patch)
treee500c2dc2baeccc7a12839aeb7c5cb741a29964d /config/cmake/UserMacros
parente00234fc8d6be9b314b920b1113b5bcc7653317f (diff)
downloadhdf5-096aac122ed6b6e8d07a30330bd95992887cd2be.zip
hdf5-096aac122ed6b6e8d07a30330bd95992887cd2be.tar.gz
hdf5-096aac122ed6b6e8d07a30330bd95992887cd2be.tar.bz2
Update cmake commands to match master
Diffstat (limited to 'config/cmake/UserMacros')
-rw-r--r--config/cmake/UserMacros/Windows_MT.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/cmake/UserMacros/Windows_MT.cmake b/config/cmake/UserMacros/Windows_MT.cmake
index d30d4d5..216a014 100644
--- a/config/cmake/UserMacros/Windows_MT.cmake
+++ b/config/cmake/UserMacros/Windows_MT.cmake
@@ -10,7 +10,7 @@
#-----------------------------------------------------------------------------
# Option to Build with Static CRT libraries on Windows
#-------------------------------------------------------------------------------
-MACRO (TARGET_STATIC_CRT_FLAGS)
+macro (TARGET_STATIC_CRT_FLAGS)
if (MSVC AND NOT BUILD_SHARED_LIBS)
foreach (flag_var
CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_RELEASE
@@ -31,7 +31,7 @@ MACRO (TARGET_STATIC_CRT_FLAGS)
set (WIN_COMPILE_FLAGS "")
set (WIN_LINK_FLAGS "/NODEFAULTLIB:MSVCRT")
endif ()
-ENDMACRO ()
+endmacro ()
#-----------------------------------------------------------------------------
option (BUILD_STATIC_CRT_LIBS "Build With Static CRT Libraries" OFF)