From: Alexander Schmidt Date: Tue, 26 Nov 2013 11:50:34 +0000 (+0100) Subject: Added mpi to include path. X-Git-Url: http://git.treefish.org/~alex/phys/heatbath.git/commitdiff_plain/2b9b5b0349d4bc4509d936b9f0de3a021fdcec40 Added mpi to include path. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 8a8d537..4466417 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,6 +7,11 @@ project(heatbath) # set(CMAKE_EXE_LINKER_FLAGS -pg) # set(CMAKE_SHARED_LINKER_FLAGS -pg) +find_package(MPI REQUIRED) +#set(CMAKE_CXX_COMPILE_FLAGS ${CMAKE_CXX_COMPILE_FLAGS} ${MPI_COMPILE_FLAGS}) +#set(CMAKE_CXX_LINK_FLAGS ${CMAKE_CXX_LINK_FLAGS} ${MPI_LINK_FLAGS}) +include_directories(${MPI_INCLUDE_PATH}) + SET(CMAKE_BUILD_TYPE Release) add_subdirectory(latlib)