************************************************************************ * Build and Test H4H5 Examples with CMake * ************************************************************************ Notes: This short instruction is written for users who want to quickly test the installation of H4H5 by using the CMake tools to build and test the H4H5 Examples. The following instructions will show the default usage and then present common changes for non-default installations. For more information, see the USING_H4H5_CMake.txt file. More information about using CMake can be found at the KitWare site, www.cmake.org. CMake uses the command line and these instructions use the script method of the ctest command. ======================================================================== I. Preconditions ======================================================================== 1. We suggest you obtain the latest CMake for windows from the Kitware web site. The H4H5 2.2.x product requires a minimum CMake version of 3.2.2. 2. You have installed the H4H5 library built with CMake by executing the HDF Install Utility (the *.msi file in the binary package for Windows or the *.sh on Linux). If you are using a Windows platform, you can obtain a pre-built Windows binary from The HDF Group's website at www.hdfgroup.org. ======================================================================== II. Building H4H5 Examples with CMake ======================================================================== Files in the H4H5 install directory: H4H5Examples folder H4H5_Examples.cmake H4H5_Examples_options.cmake CTestScript.cmake Default installation process: Create a directory to run the examples, i.e. \test_h4h5. Copy H4H5Examples folder to this directory. Copy H4H5_Examples.cmake to this directory. Copy H4H5_Examples_options.cmake to this directory. Copy CTestScript.cmake to this directory. The default source folder is defined as "H4H5Examples". It can be changed with the CTEST_SOURCE_NAME script option. The default installation folder is defined for the platform. It can be changed with the INSTALLDIR script option. (Note: Windows has issues with spaces and paths -The path will need to be set correctly.) The default ctest configuration is defined as "Release". It can be changed with the CTEST_CONFIGURATION_TYPE script option. Note that this must be the same as the value used with the -C command line option. The default build configuration is defined to build and use static libraries Other options can be changed by editing the H4H5_Examples_options.cmake file. If the defaults are okay, execute from this directory: ctest -S H4H5_Examples.cmake -C Release -V -O test.log If the defaults need change, execute from this directory: ctest -S H4H5_Examples.cmake,CTEST_SOURCE_NAME=MyExamples,INSTALLDIR=MyLocation -C Release -V -O test.log When executed, the ctest script will save the results to the log file, test.log, as indicated by the ctest command. If you wish the to see more build and test information, add "-VV" to the ctest command. The output should show near the end; 100% tests passed, 0 tests failed out of 49. ======================================================================== III. Other changes to the H4H5_Examples.cmake file ======================================================================== Line 60-63: uncomment to use a source tarball or zipfile; Add script option "TAR_SOURCE=MySource.tar".