X-Git-Url: http://git.treefish.org/~alex/phys/heatbath.git/blobdiff_plain/7a2a209a8e67d342eb4faa2fa203a94fb68d5e6c..b29c28bcd466d938ffd95887abef67dc1491bd50:/CMakeLists.txt?ds=sidebyside diff --git a/CMakeLists.txt b/CMakeLists.txt index 1840155..d631271 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,18 +7,31 @@ 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) -add_executable(heatbath-nor heatbath.cpp) -set_target_properties(heatbath-nor PROPERTIES COMPILE_DEFINITIONS "ALGORITHM_NOR") -target_link_libraries(heatbath-nor o815 gsl gslcblas lat_neigh) +add_executable(heatbath-metro heatbath.cpp) +set_target_properties(heatbath-metro PROPERTIES COMPILE_DEFINITIONS "ALGORITHM_METRO") +target_link_libraries(heatbath-metro o815 gsl gslcblas lat_neigh) + +add_executable(heatbath-AhbMhb heatbath.cpp) +set_target_properties(heatbath-AhbMhb PROPERTIES COMPILE_DEFINITIONS "ALGORITHM_AHBMHB") +target_link_libraries(heatbath-AhbMhb o815 gsl gslcblas lat_neigh) + +add_executable(heatbath-AhbMor heatbath.cpp) +set_target_properties(heatbath-AhbMor PROPERTIES COMPILE_DEFINITIONS "ALGORITHM_AHBMOR") +target_link_libraries(heatbath-AhbMor o815 gsl gslcblas lat_neigh) -add_executable(heatbath-r heatbath.cpp) -set_target_properties(heatbath-r PROPERTIES COMPILE_DEFINITIONS "ALGORITHM_R") -target_link_libraries(heatbath-r o815 gsl gslcblas lat_neigh) +add_executable(heatbath-AorMhb heatbath.cpp) +set_target_properties(heatbath-AorMhb PROPERTIES COMPILE_DEFINITIONS "ALGORITHM_AORMHB") +target_link_libraries(heatbath-AorMhb o815 gsl gslcblas lat_neigh) -add_executable(heatbath-1mr heatbath.cpp) -set_target_properties(heatbath-1mr PROPERTIES COMPILE_DEFINITIONS "ALGORITHM_1MR") -target_link_libraries(heatbath-1mr o815 gsl gslcblas lat_neigh) +add_executable(heatbath-AorMor heatbath.cpp) +set_target_properties(heatbath-AorMor PROPERTIES COMPILE_DEFINITIONS "ALGORITHM_AORMOR") +target_link_libraries(heatbath-AorMor o815 gsl gslcblas lat_neigh)