X-Git-Url: http://git.treefish.org/~alex/phys/heatbath.git/blobdiff_plain/e3ebeafe796b180ecf26b7b5c8ac7281467b68db..d017fdeec8363b3e871692219bb7eacb614a41f1:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 3417d67..c90e8c9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,6 +11,14 @@ 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-heatless heatbath.cpp) +set_target_properties(heatbath-heatless PROPERTIES COMPILE_DEFINITIONS "HEATLESS_ALGORITHM") +target_link_libraries(heatbath-heatless o815 gsl gslcblas lat_neigh) + +add_executable(heatbath-usualheat heatbath.cpp) +set_target_properties(heatbath-usualheat PROPERTIES COMPILE_DEFINITIONS "USUALHEAT_ALGORITHM") +target_link_libraries(heatbath-usualheat o815 gsl gslcblas lat_neigh) + +add_executable(heatbath-relaxedheat heatbath.cpp) +set_target_properties(heatbath-relaxedheat PROPERTIES COMPILE_DEFINITIONS "RELAXEDHEAT_ALGORITHM") +target_link_libraries(heatbath-relaxedheat o815 gsl gslcblas lat_neigh)