X-Git-Url: http://git.treefish.org/~alex/phys/heatbath.git/blobdiff_plain/c721fd42d0e3b23e8aa84d998bc8d97e5d8dfc2d..0f8b9f29fdcc92049803e88be1c9524d6d0d6fab:/CMakeLists.txt?ds=sidebyside diff --git a/CMakeLists.txt b/CMakeLists.txt index bedfec9..1840155 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,6 +11,14 @@ SET(CMAKE_BUILD_TYPE Release) add_subdirectory(latlib) -add_executable(heatbath heatbath.cpp) -#set_target_properties(phi4iso-local PROPERTIES COMPILE_DEFINITIONS "LOCAL_UPDATE_ALGORITHM") -target_link_libraries(heatbath o815 gsl gslcblas lat_neigh) +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-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-1mr heatbath.cpp) +set_target_properties(heatbath-1mr PROPERTIES COMPILE_DEFINITIONS "ALGORITHM_1MR") +target_link_libraries(heatbath-1mr o815 gsl gslcblas lat_neigh)