Skip to content

Commit

Permalink
Merge branch '382-remove-endfunction-endmacro-strings' (#382, #274)
Browse files Browse the repository at this point in the history
Build/Test Cases Summary
Enabled Packages:
Enabled all Packages
0) MPI_DEBUG => Test case MPI_DEBUG was not run! => Does not affect push readiness! (-1.00 min)
1) SERIAL_RELEASE => Test case SERIAL_RELEASE was not run! => Does not affect push readiness! (-1.00 min)
2) MPI_DEBUG_CMake-3.17.0 => passed: passed=374,notpassed=0 (1.68 min)
3) SERIAL_RELEASE_CMake-3.17.0 => passed: passed=374,notpassed=0 (1.61 min)
4) MPI_DEBUG_CMake-3.17.0_Python-3.5.2 => passed: passed=374,notpassed=0 (1.76 min)
Other local commits for this build/test group: e9ea581
  • Loading branch information
bartlettroscoe committed Jun 23, 2021
2 parents efc76a7 + e9ea581 commit d17fbf3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions tribits/common_tpls/find_modules/FindHDF5.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ macro(_hdf5_boolean_convert _var)
else()
set(${_var} FALSE)
endif()
endmacro(_HDF5_BOOLEAN_CONVERT)
endmacro()



Expand All @@ -87,7 +87,7 @@ function(_hdf5_chomp_string old_str new_str_var)

set(${new_str_var} ${_tmp} PARENT_SCOPE)

endfunction(_HDF5_CHOMP_STRING)
endfunction()



Expand Down Expand Up @@ -115,7 +115,7 @@ function(_hdf5_parse_settings_file _file _key _value)

set(${_value} ${_tmp} PARENT_SCOPE)

endfunction(_HDF5_PARSE_SETTINGS_FILE)
endfunction()



Expand All @@ -126,7 +126,7 @@ function(_hdf5_define_version _file _var)

set(${_var} ${_tmp} PARENT_SCOPE)

endfunction(_HDF5_DEFINE_VERSION _var)
endfunction()



Expand All @@ -138,7 +138,7 @@ function(_hdf5_define_parallel_build _file _var)

set(${_var} ${_tmp} PARENT_SCOPE)

endfunction(_HDF5_DEFINE_PARALLEL_BUILD _file _var)
endfunction()



Expand Down Expand Up @@ -171,7 +171,7 @@ function(_hdf5_extra_library_dirs _file _var)
endif()
set(${_var} ${_directories} PARENT_SCOPE)

endfunction(_HDF5_EXTRA_LIBRARY_DIRS _file _var)
endfunction()

function(_hdf5_library_path _file _var)

Expand All @@ -181,7 +181,7 @@ function(_hdf5_library_path _file _var)
_hdf5_parse_settings_file(${_file} ${_search_key} _tmp)

set(${_var} ${_tmp} PARENT_SCOPE)
endfunction(_HDF5_LIBRARY_PATH _file _var)
endfunction()



Expand Down Expand Up @@ -231,7 +231,7 @@ function(_hdf5_extra_libraries _file _var)

set(${_var} ${_return_list} PARENT_SCOPE)

endfunction(_HDF5_EXTRA_LIBRARIES _file _var)
endfunction()



Expand Down Expand Up @@ -275,7 +275,7 @@ function(_hdf5_extra_include_dirs _file _var)
endif()
set(${_var} ${_directories} PARENT_SCOPE)

endfunction(_HDF5_EXTRA_INCLUDE_DIRS _file _var)
endfunction()

#
# End Functions/Macros
Expand Down
2 changes: 1 addition & 1 deletion tribits/common_tpls/utils/AddImportedLibrary.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -111,5 +111,5 @@ function(add_imported_library target_name)
endif()

endif()
endfunction(ADD_IMPORTED_LIBRARY)
endfunction()

4 changes: 2 additions & 2 deletions tribits/common_tpls/utils/AddPackageDependency.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function(add_package_dependency)
macro(_print_usage)
message("\nadd_package_dependency(<target_package> DEPENDS_ON <req_package>)\n"
" Add req_package to target_package dependencies.\n")
endmacro(_print_usage)
endmacro()

# Parse the arguments
set(_options "")
Expand Down Expand Up @@ -172,4 +172,4 @@ function(add_package_dependency)

endif()

endfunction(ADD_PACKAGE_DEPENDENCY)
endfunction()
2 changes: 1 addition & 1 deletion tribits/common_tpls/utils/ParseLibraryList.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,5 @@ function(parse_library_list)
set(${PARSE_ARGS_FOUND} FALSE PARENT_SCOPE)
endif()

endfunction(PARSE_LIBRARY_LIST)
endfunction()

0 comments on commit d17fbf3

Please sign in to comment.