mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-12 15:04:59 +08:00
5a4357e4fb
Windows DLL linkage problem because of defines needed. Tested: local linux
81 lines
3.1 KiB
CMake
81 lines
3.1 KiB
CMake
cmake_minimum_required (VERSION 2.8.11)
|
|
PROJECT (HDF5_TOOLS_H5JAM)
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Setup include Directories
|
|
#-----------------------------------------------------------------------------
|
|
INCLUDE_DIRECTORIES (${HDF5_TOOLS_SRC_DIR}/lib)
|
|
|
|
# --------------------------------------------------------------------
|
|
# Add the h5jam executables
|
|
# --------------------------------------------------------------------
|
|
add_executable (h5jam ${HDF5_TOOLS_H5JAM_SOURCE_DIR}/h5jam.c)
|
|
TARGET_NAMING (h5jam ${LIB_TYPE})
|
|
TARGET_C_PROPERTIES (h5jam " " " ")
|
|
target_link_libraries (h5jam ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET})
|
|
set_target_properties (h5jam PROPERTIES FOLDER tools)
|
|
|
|
add_executable (getub ${HDF5_TOOLS_H5JAM_SOURCE_DIR}/getub.c)
|
|
TARGET_NAMING (getub ${LIB_TYPE})
|
|
TARGET_C_PROPERTIES (getub " " " ")
|
|
target_link_libraries (getub ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET})
|
|
set_target_properties (getub PROPERTIES FOLDER tools)
|
|
|
|
add_executable (tellub ${HDF5_TOOLS_H5JAM_SOURCE_DIR}/tellub.c)
|
|
TARGET_NAMING (tellub ${LIB_TYPE})
|
|
TARGET_C_PROPERTIES (tellub " " " ")
|
|
target_link_libraries (tellub ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET})
|
|
set_target_properties (tellub PROPERTIES FOLDER tools)
|
|
|
|
add_executable (h5unjam ${HDF5_TOOLS_H5JAM_SOURCE_DIR}/h5unjam.c)
|
|
TARGET_NAMING (h5unjam ${LIB_TYPE})
|
|
TARGET_C_PROPERTIES (h5unjam " " " ")
|
|
target_link_libraries (h5unjam ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET})
|
|
set_target_properties (h5unjam PROPERTIES FOLDER tools)
|
|
|
|
set (H5_DEP_EXECUTABLES
|
|
h5jam
|
|
getub
|
|
tellub
|
|
h5unjam
|
|
)
|
|
|
|
if (BUILD_TESTING)
|
|
# --------------------------------------------------------------------
|
|
# Add the h5jam test executables
|
|
# --------------------------------------------------------------------
|
|
if (HDF5_BUILD_GENERATORS AND NOT BUILD_SHARED_LIBS)
|
|
add_executable (h5jamgentest ${HDF5_TOOLS_H5JAM_SOURCE_DIR}/h5jamgentest.c)
|
|
TARGET_NAMING (h5jamgentest ${LIB_TYPE})
|
|
TARGET_C_PROPERTIES (testhdf5 " " " ")
|
|
target_link_libraries (h5jamgentest ${HDF5_LIB_TARGET})
|
|
set_target_properties (h5jamgentest PROPERTIES FOLDER generator/tools)
|
|
|
|
#add_test (NAME h5jamgentest COMMAND $<TARGET_FILE:h5jamgentest>)
|
|
endif (HDF5_BUILD_GENERATORS AND NOT BUILD_SHARED_LIBS)
|
|
|
|
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 (h5jam ${HDF5_INSTALL_BIN_DIR} toolsapplications)
|
|
|
|
install (
|
|
TARGETS
|
|
h5jam h5unjam
|
|
RUNTIME DESTINATION
|
|
${HDF5_INSTALL_BIN_DIR}
|
|
COMPONENT
|
|
toolsapplications
|
|
)
|