Something went wrong on our end
-
marco authored
the script now allows to specify components, say mol. OPENSTRUCTURE_LIBRARIES will then only contain libraries of modules specified. git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2139 5a81b35b-ba03-0410-adc8-b2c5c5119f08
marco authoredthe script now allows to specify components, say mol. OPENSTRUCTURE_LIBRARIES will then only contain libraries of modules specified. git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2139 5a81b35b-ba03-0410-adc8-b2c5c5119f08
FindOPENSTRUCTURE.cmake 2.58 KiB
#-------------------------------------------------------------------------------
# Check for OpenStructure Libraries
#
# OPENSTRUCTURE_ROOT Prefix for OpenStructure libraries
# OPENSTRUCTURE_MIN_VERSION minimal OPenStructure version required
#
# When OpenStructure is found, the result is placed in the following variables:
#
# OPENSTRUCTURE_LIBRARIES is set to the library and linker flags used to
# link against python
# OPENSTRUCTURE_VERSION is set to the version of OpenStructure
# OPENSTRUCTURE_INCLUDE_DIR is set to the path that contains base.hh
#
# Author: Valerio Mariani, Marco Biasini
#-------------------------------------------------------------------------------
macro(find_OPENSTRUCTURE OPENSTRUCTURE_ROOT NAMES HEADER_NAMES)
if (NOT OPENSTRUCTURE_FIND_COMPONENTS)
message(FATAL_ERROR "Please specify which modules of OpenStructure you "
"would like to use after the COMPONENTS keyword.")
endif()
list(APPEND OPENSTRUCTURE_FIND_COMPONENTS base geom)
list(REMOVE_DUPLICATES OPENSTRUCTURE_FIND_COMPONENTS)
foreach (LIB ${OPENSTRUCTURE_FIND_COMPONENTS})
set(FOUND_LIB FOUND_LIB-NOTFOUND)
find_library(FOUND_LIB
NAMES ost_${LIB}
HINTS "${PYTHON_ROOT}"
PATH ${OPENSTRUCTURE_ROOT}
PATH_SUFFIXES lib lib64
NO_SYSTEM_ENVIRONMENT_PATH NO_DEFAULT_PATH
)
if (NOT FOUND_LIB)
if (OPENSTRUCTURE_FIND_REQUIRED)
message(FATAL_ERROR "Could not find library ost_${LIB}. Please specify"
" the location of your OpenStructure installation with"
" OPENSTRUCTURE_ROOT")
endif()
else()
set(OPENSTRUCTURE_LIBRARIES ${OPENSTRUCTURE_LIBRARIES} ${FOUND_LIB})
endif()
endforeach()
find_path(OPENSTRUCTURE_INCLUDE_DIR
NAMES "${HEADER_NAMES}"
HINTS "${OPENSTRUCTURE_ROOT}/include"
NO_SYSTEM_ENVIRONMENT_PATH NO_DEFAULT_PATH
)
set(OPENSTRUCTURE_FOUND 1)
endmacro()
#-------------------------------------------------------------------------------
SET(LIBNAMES
ost_base
ost_gfx
ost_info
ost_qa
ost_conop
ost_gui
ost_io
ost_seq
ost_db
ost_img
ost_mol
ost_seq_alg
ost_geom
ost_img_alg
ost_mol_alg
)
find_OPENSTRUCTURE("${OPENSTRUCTURE_ROOT}" "${LIBNAMES}" "ost/config.hh")
mark_as_advanced(
OPENSTRUCTURE_LIBRARIES
OPENSTRUCTURE_INCLUDE_DIR
OPENSTRUCTURE_VERSION
)
if (OPENSTRUCTURE_FOUND)
if (NOT OPENSTRUCTURE_FIND_QUIETLY)
endif ()
else (OPENSTRUCTURE_FOUND)
if (OPENSTRUCTURE_FIND_REQUIRED)
message(FATAL_ERROR "Could not find OpenStructure")
endif ()
endif ()