Merge topic 'fix-findhdf5-definitions'

8eb0b56c FindHDF5: Make sure compile definition vars keep the -D flag
This commit is contained in:
Brad King 2016-08-03 09:20:19 -04:00 committed by CMake Topic Stage
commit a382c3013c
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ macro( _HDF5_parse_compile_line
set( RE " -D([^ ]*)")
string( REGEX MATCHALL "${RE}" definition_flags "${${compile_line_var}}" )
foreach( DEF IN LISTS definition_flags )
string( REGEX REPLACE "${RE}" "\\1" DEF "${DEF}" )
string( STRIP "${DEF}" DEF )
list( APPEND ${definitions} ${DEF} )
endforeach()