Also add default switch blocks to h5import. Merge h5dump any_path option from trunk. Tested: local linux
55 lines
2.2 KiB
CMake
55 lines
2.2 KiB
CMake
cmake_minimum_required (VERSION 2.8.10)
|
|
PROJECT (HDF5_TOOLS_H5IMPORT)
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Setup include Directories
|
|
#-----------------------------------------------------------------------------
|
|
INCLUDE_DIRECTORIES (${HDF5_TOOLS_SRC_DIR}/lib)
|
|
|
|
# --------------------------------------------------------------------
|
|
# Add the h5import executables
|
|
# --------------------------------------------------------------------
|
|
ADD_EXECUTABLE (h5import ${HDF5_TOOLS_H5IMPORT_SOURCE_DIR}/h5import.c)
|
|
TARGET_NAMING (h5import ${LIB_TYPE})
|
|
TARGET_C_PROPERTIES (h5import " " " ")
|
|
TARGET_LINK_LIBRARIES (h5import ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET})
|
|
#SET_TARGET_PROPERTIES (h5import PROPERTIES COMPILE_DEFINITIONS H5DEBUGIMPORT)
|
|
SET_TARGET_PROPERTIES (h5import PROPERTIES FOLDER tools)
|
|
|
|
SET (H5_DEP_EXECUTABLES h5import)
|
|
|
|
IF (BUILD_TESTING)
|
|
# --------------------------------------------------------------------
|
|
# Add the h5import executables
|
|
# --------------------------------------------------------------------
|
|
ADD_EXECUTABLE (h5importtest ${HDF5_TOOLS_H5IMPORT_SOURCE_DIR}/h5importtest.c)
|
|
TARGET_NAMING (h5importtest ${LIB_TYPE})
|
|
TARGET_C_PROPERTIES (h5importtest " " " ")
|
|
TARGET_LINK_LIBRARIES (h5importtest ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET})
|
|
SET_TARGET_PROPERTIES (h5importtest PROPERTIES FOLDER tools)
|
|
|
|
INCLUDE (CMakeTests.cmake)
|
|
|
|
ENDIF (BUILD_TESTING)
|
|
|
|
##############################################################################
|
|
##############################################################################
|
|
### I N S T A L L A T I O N ###
|
|
##############################################################################
|
|
##############################################################################
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Rules for Installation of tools using make Install target
|
|
#-----------------------------------------------------------------------------
|
|
|
|
#INSTALL_PROGRAM_PDB (h5import ${HDF5_INSTALL_BIN_DIR} toolsapplications)
|
|
|
|
INSTALL (
|
|
TARGETS
|
|
h5import
|
|
RUNTIME DESTINATION
|
|
${HDF5_INSTALL_BIN_DIR}
|
|
COMPONENT
|
|
toolsapplications
|
|
)
|