Files
cgal/Installation/cmake/modules/FindESBTL.cmake
T
Sébastien Loriot d72337785c remove dependance on CGAL_PDB: merge from the branche created for that purpose
I do not remove the directory CGAL_PDB as I am allowed to use svn remove.
2010-06-10 17:26:38 +00:00

29 lines
568 B
CMake

#This modules tries to find ESBTL
# Once done this will define
#
# ESBTL_FOUND - system has ESBTL
# ESBTL_INCLUDE_DIR - ESBTL include directory
#
# Is it already configured?
if (ESBTL_INCLUDE_DIR)
set(ESBTL_FOUND TRUE)
else()
find_path(ESBTL_INCLUDE_DIR
NAMES ESBTL/default.h
PATHS /usr/include
/usr/local/include
)
if(ESBTL_INCLUDE_DIR)
set(ESBTL_FOUND TRUE)
endif()
endif()
if(ESBTL_FOUND)
message(STATUS "Found ESBTL: ${ESBTL_INCLUDE_DIR}")
set(ESBTL_USE_FILE "UseESBTL")
endif()