CMakeLists.txt 1.06 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13

# ==================================================================================================
# This file is part of the CodeVault project. The project is licensed under Apache Version 2.0.
# CodeVault is part of the EU-project PRACE-4IP (WP7.3.C).
#
# Author(s):
#   Evghenii Gaburov <evghenii.gaburov@surfsara.nl>
#
# ==================================================================================================

# CMake project
cmake_minimum_required(VERSION 2.8.10 FATAL_ERROR)
project("8_IO" NONE)
14
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/common.cmake)
15
16
17
18
19
20
21
22
23
24
25

# ==================================================================================================

# Dwarf *: IO methods
message("--------------------")
message("Dwarf 8: I/O methods:")
message("--------------------")
set(DWARF_PREFIX 8_io) # The prefix of the name of the binaries produced

# Add the examples
add_subdirectory(basicMPIIO)
26
add_subdirectory(read2shmem)
atuncer @kelenken's avatar
atuncer @kelenken committed
27
add_subdirectory(markovchain)
28
29
30
31
32
33

# ==================================================================================================