diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index a69a72922b2be64b7192cb73ba4918edb0ffcc7d..7ce7ca23e16423be98be34edf51e4b4321931817 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -373,13 +373,12 @@ if(PKG_USER-VTK) endif() if(PKG_KIM) - find_package(KIM QUIET) - if(NOT KIM_FOUND) - message(STATUS "KIM not found - we will build our own") + option(DOWNLOAD_KIM "Download kim-api (instead of using the system's one)" OFF) + if(DOWNLOAD_KIM) include(ExternalProject) ExternalProject_Add(kim_build - URL https://github.com/openkim/kim-api/archive/v1.9.4.tar.gz - URL_MD5 f4d35a1705eed46d64c7c0ab448ff3e0 + URL https://github.com/openkim/kim-api/archive/v1.9.5.tar.gz + URL_MD5 9f66efc128da33039e30659f36fc6d00 BUILD_IN_SOURCE 1 CONFIGURE_COMMAND <SOURCE_DIR>/configure --prefix=<INSTALL_DIR> ) @@ -387,6 +386,11 @@ if(PKG_KIM) set(KIM_INCLUDE_DIRS ${INSTALL_DIR}/include/kim-api-v1) set(KIM_LIBRARIES ${INSTALL_DIR}/lib/libkim-api-v1.so) list(APPEND LAMMPS_DEPS kim_build) + else() + find_package(KIM) + if(NOT KIM_FOUND) + message(FATAL_ERROR "KIM not found, help CMake to find it by setting KIM_LIBRARY and KIM_INCLUDE_DIR, or set DOWNLOAD_KIM=ON to download it") + endif() endif() list(APPEND LAMMPS_LINK_LIBS ${KIM_LIBRARIES}) include_directories(${KIM_INCLUDE_DIRS}) diff --git a/lib/kim/Install.py b/lib/kim/Install.py index 3f1d9fb19141e67be56a1fdeb898ce6853aba2f2..d098250906bfabd19e74db7ad2a657d92a4c4ead 100644 --- a/lib/kim/Install.py +++ b/lib/kim/Install.py @@ -21,7 +21,7 @@ Syntax from lib dir: python Install.py -b -v version -a kim-name specify one or more options, order does not matter -v = version of KIM API library to use - default = kim-api-v1.9.4 (current as of Apr 2018) + default = kim-api-v1.9.5 (current as of May 2018) -b = download and build base KIM API library with example Models this will delete any previous installation in the current folder -n = do NOT download and build base KIM API library. @@ -109,7 +109,7 @@ nargs = len(args) if nargs == 0: error() thisdir = os.environ['PWD'] -version = "kim-api-v1.9.4" +version = "kim-api-v1.9.5" buildflag = False everythingflag = False