1 cmake_minimum_required(VERSION 2.8)
6 # set(CMAKE_CXX_FLAGS -pg)
7 # set(CMAKE_EXE_LINKER_FLAGS -pg)
8 # set(CMAKE_SHARED_LINKER_FLAGS -pg)
10 find_package(MPI REQUIRED)
11 #set(CMAKE_CXX_COMPILE_FLAGS ${CMAKE_CXX_COMPILE_FLAGS} ${MPI_COMPILE_FLAGS})
12 #set(CMAKE_CXX_LINK_FLAGS ${CMAKE_CXX_LINK_FLAGS} ${MPI_LINK_FLAGS})
13 include_directories(${MPI_INCLUDE_PATH})
15 SET(CMAKE_BUILD_TYPE Release)
17 add_subdirectory(latlib)
19 add_executable(heatbath-metro heatbath.cpp)
20 set_target_properties(heatbath-metro PROPERTIES COMPILE_DEFINITIONS "ALGORITHM_METRO")
21 target_link_libraries(heatbath-metro o815 gsl gslcblas lat_neigh)
23 add_executable(heatbath-AhbMhb heatbath.cpp)
24 set_target_properties(heatbath-AhbMhb PROPERTIES COMPILE_DEFINITIONS "ALGORITHM_AHBMHB")
25 target_link_libraries(heatbath-AhbMhb o815 gsl gslcblas lat_neigh)
27 add_executable(heatbath-AhbMor heatbath.cpp)
28 set_target_properties(heatbath-AhbMor PROPERTIES COMPILE_DEFINITIONS "ALGORITHM_AHBMOR")
29 target_link_libraries(heatbath-AhbMor o815 gsl gslcblas lat_neigh)
31 add_executable(heatbath-AorMhb heatbath.cpp)
32 set_target_properties(heatbath-AorMhb PROPERTIES COMPILE_DEFINITIONS "ALGORITHM_AORMHB")
33 target_link_libraries(heatbath-AorMhb o815 gsl gslcblas lat_neigh)
35 add_executable(heatbath-AorMor heatbath.cpp)
36 set_target_properties(heatbath-AorMor PROPERTIES COMPILE_DEFINITIONS "ALGORITHM_AORMOR")
37 target_link_libraries(heatbath-AorMor o815 gsl gslcblas lat_neigh)