2017-01-11 07:09:53 +08:00
|
|
|
cmake_minimum_required (VERSION 3.2.2)
|
2010-05-14 00:01:50 +08:00
|
|
|
PROJECT (HDF5_TOOLS)
|
|
|
|
|
2012-09-19 06:08:07 +08:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Apply Definitions to compiler in this directory and below
|
|
|
|
#-----------------------------------------------------------------------------
|
2014-05-15 03:50:28 +08:00
|
|
|
add_definitions (${HDF_EXTRA_C_FLAGS})
|
2012-09-19 06:08:07 +08:00
|
|
|
|
2010-05-14 00:01:50 +08:00
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# If testing was NOT enabled, then we need to build the tools library
|
|
|
|
# --------------------------------------------------------------------
|
2014-03-12 05:14:57 +08:00
|
|
|
if (NOT BUILD_TESTING)
|
2014-03-19 00:21:46 +08:00
|
|
|
add_subdirectory (${HDF5_TOOLS_SOURCE_DIR}/lib)
|
2017-01-11 07:09:53 +08:00
|
|
|
endif ()
|
2010-05-14 00:01:50 +08:00
|
|
|
|
2016-10-27 23:03:22 +08:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Setup include Directories
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
INCLUDE_DIRECTORIES (${HDF5_TOOLS_SOURCE_DIR}/lib)
|
2014-12-18 07:07:24 +08:00
|
|
|
|
2016-10-27 23:03:22 +08:00
|
|
|
#-- Add the test sources
|
|
|
|
add_subdirectory (${HDF5_TOOLS_SOURCE_DIR}/src)
|
2016-06-15 07:07:03 +08:00
|
|
|
|
2016-10-27 23:03:22 +08:00
|
|
|
#-- Add the tests
|
|
|
|
if (BUILD_TESTING)
|
|
|
|
add_subdirectory (${HDF5_TOOLS_SOURCE_DIR}/test)
|
2017-01-11 07:09:53 +08:00
|
|
|
endif ()
|