From b4ab94517df7113982dc94050ce7966beaa72e86 Mon Sep 17 00:00:00 2001 From: Patrick Quoika Date: Fri, 21 Oct 2022 10:09:45 +0200 Subject: [PATCH 1/2] Correct small typo directory `manual` has been renamed to `docs`. This was not adapted in CMakeLists.txt up to now. --- complexes++/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/complexes++/CMakeLists.txt b/complexes++/CMakeLists.txt index c882388..d369036 100644 --- a/complexes++/CMakeLists.txt +++ b/complexes++/CMakeLists.txt @@ -163,7 +163,7 @@ endif() find_package(Doxygen) if(DOXYGEN_FOUND) message( STATUS "Doxygen has been found, use \"make doc\" to generate the documentation." ) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../manual/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY) + configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../docs/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY) add_custom_target( doc ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile From edcc5f2788927529bc7d0779dc5ffe60f90e6e23 Mon Sep 17 00:00:00 2001 From: Patrick Quoika Date: Mon, 24 Oct 2022 15:57:10 +0200 Subject: [PATCH 2/2] Change reference to manual in README. the manual.pdf, which does not exist anymore, was still referenced in the readme file in the complexes++ subfolder. Instead I included a link to the docs folder. --- complexes++/README.MD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/complexes++/README.MD b/complexes++/README.MD index 8bc003b..94e02e6 100644 --- a/complexes++/README.MD +++ b/complexes++/README.MD @@ -12,7 +12,7 @@ complexes++ is a Monte-Carlo engine for coarse grained protein models. For an -explanation of the implemented algorithms please have a look into the [manual](../manual/manual.pdf). +explanation of the implemented algorithms please have a look into the [docs](../docs/). You can find examples of using complexes++ in the pycomplexes included [tutorials](../pycomplexes/tutorials).