/usr/lib/CGAL/FindRS3.cmake is in libcgal-dev 4.2-5ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | # RS needs GMP 4.2 or newer, this script will fail if an old version is
# detected
find_package( GMP )
find_package( MPFI )
find_package( RS )
if ( RS_FOUND )
if( MPFI_FOUND )
include( CGAL_VersionUtils )
find_path(RS3_INCLUDE_DIR
NAMES rs3_fncts.h
HINTS ENV RS3_INC_DIR
ENV RS3_DIR
ENV RS_INC_DIR
ENV RS_DIR
PATHS ${RS_INCLUDE_DIR}
PATH_SUFFIXES include
DOC "The directory containing the RS3 include files"
)
find_library(RS3_LIBRARIES
NAMES rs3
HINTS ENV RS3_LIB_DIR
ENV RS3_DIR
ENV RS_LIB_DIR
ENV RS_DIR
PATHS ${RS_LIBRARIES_DIR}
PATH_SUFFIXES lib
DOC "Path to the RS3 library"
)
get_dependency_version( GMP )
IS_VERSION_LESS("${GMP_VERSION}" "4.2.0" _IS_GMP_VERSION_TO_LOW)
if(_IS_GMP_VERSION_TO_LOW)
message( STATUS
"RS3 needs GMP>=4.2. Your GMP version is ${GMP_VERSION}." )
else(_IS_GMP_VERSION_TO_LOW)
if( RS3_INCLUDE_DIR AND RS3_LIBRARIES )
set(RS3_FOUND TRUE)
endif( RS3_INCLUDE_DIR AND RS3_LIBRARIES )
if( RS3_LIBRARIES )
get_filename_component(RS3_LIBRARIES_DIR ${RS3_LIBRARIES} PATH CACHE )
endif( RS3_LIBRARIES )
if( NOT RS3_INCLUDE_DIR OR NOT RS3_LIBRARIES_DIR )
include( RS3Config OPTIONAL )
endif( NOT RS3_INCLUDE_DIR OR NOT RS3_LIBRARIES_DIR )
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args( RS3
"DEFAULT_MSG"
RS3_LIBRARIES
RS3_INCLUDE_DIR )
endif(_IS_GMP_VERSION_TO_LOW)
else( MPFI_FOUND )
message( STATUS "RS3 requires MPFI" )
set( RS3_FOUND FALSE )
endif( MPFI_FOUND )
else( RS_FOUND )
message( STATUS "RS3 requires RS" )
set( RS3_FOUND FALSE )
endif( RS_FOUND )
if(RS3_FOUND)
set(RS3_USE_FILE "CGAL_UseRS3")
endif(RS3_FOUND)
|