mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
31 lines
852 B
CMake
31 lines
852 B
CMake
cmake_minimum_required (VERSION 3.10)
|
|
PROJECT (HDF5_HL C CXX)
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Apply Definitions to compiler in this directory and below
|
|
#-----------------------------------------------------------------------------
|
|
add_definitions (${HDF_EXTRA_C_FLAGS})
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# List Source files
|
|
#-----------------------------------------------------------------------------
|
|
|
|
add_subdirectory (src)
|
|
|
|
#-- Build the High level Tools
|
|
if (HDF5_BUILD_TOOLS)
|
|
add_subdirectory (tools)
|
|
endif ()
|
|
|
|
#-- Add High Level Examples
|
|
if (HDF5_BUILD_EXAMPLES)
|
|
add_subdirectory (examples)
|
|
endif ()
|
|
|
|
#-- Build the Unit testing if requested
|
|
if (NOT HDF5_EXTERNALLY_CONFIGURED)
|
|
if (BUILD_TESTING)
|
|
add_subdirectory (test)
|
|
endif ()
|
|
endif ()
|