From 9e06ea12d31f22855cdd0ec78fd8457a190c4dfe Mon Sep 17 00:00:00 2001 From: Carl Philipp Klemm <philipp@uvos.xyz> Date: Tue, 26 Sep 2023 14:18:08 +0200 Subject: [PATCH] update readme --- CMakeLists.txt | 2 +- README.md | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b263a8a..f5ac9b1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,7 +50,7 @@ else (DOXYGEN_FOUND) endif (DOXYGEN_FOUND) add_library(${PROJECT_NAME} SHARED drt.cpp) -target_link_libraries(${PROJECT_NAME} ${EIGEN3_LIBRARIES} ${EIS_LIBRARIES}) +target_link_libraries(${PROJECT_NAME} ${EIGEN3_LIBRARIES} ${EIS_LIBRARIES} -leisgenerator) target_include_directories(${PROJECT_NAME} PUBLIC ${EIGEN3_INCLUDE_DIRS} ${EIS_INCLUDE_DIRS} ./LBFG) set_target_properties(${PROJECT_NAME} PROPERTIES COMPILE_FLAGS "-Wall -O2 -march=native -g" LINK_FLAGS "-flto") install(TARGETS ${PROJECT_NAME} DESTINATION lib) diff --git a/README.md b/README.md index 25b9585..5b8da53 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,7 @@ _libeisdrt_ is a c++ shared library to compute Distribution of Relaxation Times using Tikhonov regularization. _libeisdrt_ is well integrated to eisgenerator, Eigen and PyTorch. -This manual is divided in the following sections depending on what datatypes you want to use libeisdrt with: -- \ref EIGENAPI api to use in [Eigen](https://eigen.tuxfamily.org/index.php?title=Main_Page) applications -- \ref TORCHAPI api to use in [libtorch/PyTorch](https://pytorch.org/) applications -- \ref EISAPI api to use in [eisgenerator](https://git-ce.rwth-aachen.de/carl_philipp.klemm/eisgenerator) applications -- \ref TYPES types used by all apis - +Full documentaton can be found [git](https://uvos.xyz/kiss/libdrtdoc) or by building the doc target ## Building -- GitLab