X-Git-Url: http://git.treefish.org/~alex/phys/heatbath.git/blobdiff_plain/e3ebeafe796b180ecf26b7b5c8ac7281467b68db..4b4dcf9a4b5a913c1574a9cc1aa479f1aa35a003:/CMakeLists.txt?ds=inline diff --git a/CMakeLists.txt b/CMakeLists.txt index 3417d67..41c8e07 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,6 +11,18 @@ SET(CMAKE_BUILD_TYPE Release) add_subdirectory(latlib) -add_executable(heatbath heatbath.cc) -#set_target_properties(phi4iso-local PROPERTIES COMPILE_DEFINITIONS "LOCAL_UPDATE_ALGORITHM") -target_link_libraries(heatbath o815) +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) + +add_executable(heatbath-1mr+ heatbath.cpp) +set_target_properties(heatbath-1mr+ PROPERTIES COMPILE_DEFINITIONS "ALGORITHM_1MRPLUS") +target_link_libraries(heatbath-1mr+ o815 gsl gslcblas lat_neigh)