From: Alexander Schmidt Date: Wed, 13 Nov 2013 09:11:19 +0000 (+0100) Subject: Initial. X-Git-Url: http://git.treefish.org/~alex/phys/heatbath.git/commitdiff_plain/e3ebeafe796b180ecf26b7b5c8ac7281467b68db?ds=sidebyside Initial. --- e3ebeafe796b180ecf26b7b5c8ac7281467b68db diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1e59c67 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +*~ +heatbath +cmake_install.cmake +Makefile +CMakeCache.txt +CMakeFiles diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..79c2de3 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "latlib"] + path = latlib + url = ssh://git.treefish.org/~alex/public_git/phys/latlib.git diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..3417d67 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,16 @@ +cmake_minimum_required(VERSION 2.8) + +project(heatbath) + +# #PROFILING +# set(CMAKE_CXX_FLAGS -pg) +# set(CMAKE_EXE_LINKER_FLAGS -pg) +# set(CMAKE_SHARED_LINKER_FLAGS -pg) + +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) diff --git a/heatbath.cc b/heatbath.cc new file mode 100644 index 0000000..086f367 --- /dev/null +++ b/heatbath.cc @@ -0,0 +1,5 @@ +int main (int argc, char *argv[]) +{ + + return 0; +} diff --git a/latlib b/latlib new file mode 160000 index 0000000..2918744 --- /dev/null +++ b/latlib @@ -0,0 +1 @@ +Subproject commit 2918744d037d9254538dd84311aa346576e0fe04