-
Notifications
You must be signed in to change notification settings - Fork 83
/
CMakeLists.txt
55 lines (45 loc) · 1.48 KB
/
CMakeLists.txt
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
cmake_minimum_required(VERSION 3.0)
project(LULESH CXX)
option(WITH_MPI "Build LULESH with MPI" TRUE)
option(WITH_OPENMP "Build LULESH with OpenMP" TRUE)
option(WITH_SILO "Build LULESH with silo support" FALSE)
if (WITH_MPI)
find_package(MPI REQUIRED)
include_directories(${MPI_C_INCLUDE_PATH} ${MPI_CXX_INCLUDE_PATH})
add_definitions("-DUSE_MPI=1")
list(APPEND LULESH_EXTERNAL_LIBS ${MPI_C_LIBRARIES} ${MPI_CXX_LIBRARIES})
else()
add_definitions("-DUSE_MPI=0")
endif()
if (WITH_OPENMP)
find_package(OpenMP REQUIRED)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}")
endif()
if (WITH_SILO)
find_path(SILO_INCLUDE_DIR silo.h
HINTS ${SILO_DIR}/include)
find_library(SILO_LIBRARY
NAMES siloh5
HINTS ${SILO_DIR}/lib)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(SILO DEFAULT_MSG
SILO_LIBRARY
SILO_INCLUDE_DIR)
if (SILO_FOUND)
add_definitions("-DVIZ_MESH")
include_directories(${SILO_INCLUDE_DIR})
# Note: silo needs to be built as a dynamic lib, otherwise
# there are additional dependencies (hdf5) which we don't know.
# This would be fixed by silo providing a CMake package.
list(APPEND LULESH_EXTERNAL_LIBS ${SILO_LIBRARY})
endif()
endif()
set(LULESH_SOURCES
lulesh-comm.cc
lulesh-init.cc
lulesh-util.cc
lulesh-viz.cc
lulesh.cc)
set(LULESH_EXEC lulesh2.0)
add_executable(${LULESH_EXEC} ${LULESH_SOURCES})
target_link_libraries(${LULESH_EXEC} ${LULESH_EXTERNAL_LIBS})