mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-03 02:32:04 +08:00
26 lines
922 B
CMake
26 lines
922 B
CMake
cmake_minimum_required (VERSION 3.2.2)
|
|
PROJECT (HDF5_HL_CPP_EXAMPLES)
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Setup include Directories
|
|
#-----------------------------------------------------------------------------
|
|
INCLUDE_DIRECTORIES (${HDF5_HL_SRC_DIR}/src)
|
|
INCLUDE_DIRECTORIES (${HDF5_HL_CPP_SRC_DIR}/src)
|
|
|
|
# --------------------------------------------------------------------
|
|
# Add in the examples for the Packet Table codes
|
|
# --------------------------------------------------------------------
|
|
add_executable (ptExampleFL ${HDF5_HL_CPP_EXAMPLES_SOURCE_DIR}/ptExampleFL.cpp)
|
|
TARGET_C_PROPERTIES (ptExampleFL STATIC " " " ")
|
|
target_link_libraries (
|
|
ptExampleFL
|
|
${HDF5_HL_CPP_LIB_TARGET}
|
|
${HDF5_HL_LIB_TARGET}
|
|
${HDF5_LIB_TARGET}
|
|
)
|
|
set_target_properties (ptExampleFL PROPERTIES FOLDER examples/hl/cpp)
|
|
|
|
if (BUILD_TESTING)
|
|
include (CMakeTests.cmake)
|
|
endif ()
|