summaryrefslogtreecommitdiffstats
path: root/hl/fortran/examples/CMakeLists.txt
blob: bf6a0ca700095ca7e76a15ad107bb6f92de1a822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
cmake_minimum_required (VERSION 3.1.0)
PROJECT (HDF5_HL_F90_EXAMPLES C CXX Fortran)

#-----------------------------------------------------------------------------
# Setup include Directories
#-----------------------------------------------------------------------------
INCLUDE_DIRECTORIES (
    ${CMAKE_Fortran_MODULE_DIRECTORY}
    ${HDF5_F90_BINARY_DIR}
    ${HDF5_F90_SRC_DIR}/src
)

set (examples
    exlite
    ex_ds1
)

foreach (example ${examples})
  add_executable (hl_f90_ex_${example} ${HDF5_HL_F90_EXAMPLES_SOURCE_DIR}/${example}.f90)
  TARGET_NAMING (hl_f90_ex_${example} ${LIB_TYPE})
  TARGET_FORTRAN_PROPERTIES (hl_f90_ex_${example} " " " ")
  target_link_libraries (hl_f90_ex_${example} 
      ${HDF5_HL_F90_LIB_TARGET}
      ${HDF5_F90_LIB_TARGET}
      ${HDF5_LIB_TARGET}
  )
  set_target_properties (hl_f90_ex_${example} PROPERTIES LINKER_LANGUAGE Fortran)
  set_target_properties (hl_f90_ex_${example} PROPERTIES FOLDER examples/hl/fortran)

endforeach (example ${examples})

if (BUILD_TESTING)

  include (CMakeTests.cmake)

endif (BUILD_TESTING)