Add file header comments to CMake files (#5688)

This commit is contained in:
Allen Byrne
2025-08-13 07:19:57 -05:00
committed by GitHub
parent e05cff7391
commit 497b65ad0f
49 changed files with 460 additions and 53 deletions
+8 -1
View File
@@ -1,3 +1,11 @@
# Top-level CMake configuration for HDF5 Examples
# This file sets up build options, dependencies, and subdirectories for C, C++,
# Fortran, Java, and filter examples.
# It also handles MPI/parallel support, version parsing, and testing configuration.
#
# The option naming convention is H5EX_* for examples options and HDF5_* for HDF5
# library features.
cmake_minimum_required (VERSION 3.18)
project (H5EXAMPLES C)
@@ -222,4 +230,3 @@ endif ()
if (H5EX_BUILD_PYTHON)
add_subdirectory (PYTHON)
endif ()