diff --git a/CMakeLists.txt b/CMakeLists.txt index b263a8adf9c04a228ae9fc566fe0bd9913f5e2a8..f5ac9b1e7c133951d7ae74b1103bbed29fd10dc6 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 25b95852faf76c1a460c975f301a3f009aa441a5..5b8da53cc64c6231654c2c2c5e6b2fa7e170f443 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