mirror of https://github.com/CGAL/cgal
Separate defintions from flags
This commit is contained in:
parent
0046cc19df
commit
d597b8c40b
|
|
@ -401,15 +401,5 @@ else(BLAS_LIBRARIES_DIR OR BLAS_LIBRARIES)
|
|||
endif(BLAS_FOUND)
|
||||
endif(NOT BLAS_FIND_QUIETLY)
|
||||
|
||||
#message("DEBUG: BLAS_DEFINITIONS = ${BLAS_DEFINITIONS}")
|
||||
#message("DEBUG: BLAS_LINKER_FLAGS = ${BLAS_LINKER_FLAGS}")
|
||||
#message("DEBUG: BLAS_LIBRARIES = ${BLAS_LIBRARIES}")
|
||||
#message("DEBUG: BLAS_LIBRARIES_DIR = ${BLAS_LIBRARIES_DIR}")
|
||||
#message("DEBUG: BLAS_FOUND = ${BLAS_FOUND}")
|
||||
|
||||
endif(BLAS_LIBRARIES_DIR OR BLAS_LIBRARIES)
|
||||
|
||||
#mark_as_advanced(BLAS_DEFINITIONS)
|
||||
#mark_as_advanced(BLAS_LINKER_FLAGS)
|
||||
#mark_as_advanced(BLAS_LIBRARIES)
|
||||
#mark_as_advanced(BLAS_LIBRARIES_DIR)
|
||||
|
|
|
|||
|
|
@ -59,7 +59,3 @@ else()
|
|||
find_package_handle_standard_args(GMP "DEFAULT_MSG" GMP_INCLUDE_DIR GMP_LIBRARIES_DIR)
|
||||
|
||||
endif()
|
||||
|
||||
#mark_as_advanced(GMP_INCLUDE_DIR)
|
||||
#mark_as_advanced(GMP_LIBRARIES)
|
||||
#mark_as_advanced(GMP_LIBRARIES_DIR)
|
||||
|
|
|
|||
|
|
@ -262,15 +262,5 @@ else(LAPACK_LIBRARIES_DIR OR LAPACK_LIBRARIES)
|
|||
endif(LAPACK_FOUND)
|
||||
endif(NOT LAPACK_FIND_QUIETLY)
|
||||
|
||||
#message("DEBUG: LAPACK_DEFINITIONS = ${LAPACK_DEFINITIONS}")
|
||||
#message("DEBUG: LAPACK_LINKER_FLAGS = ${LAPACK_LINKER_FLAGS}")
|
||||
#message("DEBUG: LAPACK_LIBRARIES = ${LAPACK_LIBRARIES}")
|
||||
#message("DEBUG: LAPACK_LIBRARIES_DIR = ${LAPACK_LIBRARIES_DIR}")
|
||||
#message("DEBUG: LAPACK_FOUND = ${LAPACK_FOUND}")
|
||||
|
||||
endif(LAPACK_LIBRARIES_DIR OR LAPACK_LIBRARIES)
|
||||
|
||||
#mark_as_advanced(LAPACK_DEFINITIONS)
|
||||
#mark_as_advanced(LAPACK_LINKER_FLAGS)
|
||||
#mark_as_advanced(LAPACK_LIBRARIES)
|
||||
#mark_as_advanced(LAPACK_LIBRARIES_DIR)
|
||||
|
|
|
|||
|
|
@ -27,6 +27,14 @@ else()
|
|||
set( LEDA_DEFINITIONS "$ENV{LEDA_DEFINITIONS}" CACHE STRING "Definitions for the LEDA library" FORCE )
|
||||
endif()
|
||||
|
||||
if ( NOT LEDA_CXX_FLAGS )
|
||||
set( LEDA_CXX_FLAGS "$ENV{LEDA_CXX_FLAGS}" CACHE STRING "Compiler flags for the LEDA library" FORCE )
|
||||
endif()
|
||||
|
||||
if ( NOT LEDA_LINERFLAGS )
|
||||
set( LEDA_LINKER_FLAGS "$ENV{LEDA_LINKER_FLAGS}" CACHE STRING "Linker flags for the LEDA library" FORCE )
|
||||
endif()
|
||||
|
||||
if ( NOT "$ENV{LEDA_VERSION}" STREQUAL "" )
|
||||
set( CGAL_LEDA_VERSION "$ENV{LEDA_VERSION}" CACHE STRING "The version of the LEDA library" FORCE )
|
||||
endif()
|
||||
|
|
|
|||
|
|
@ -60,6 +60,3 @@ else()
|
|||
|
||||
endif()
|
||||
|
||||
#mark_as_advanced(MPFR_INCLUDE_DIR)
|
||||
#mark_as_advanced(MPFR_LIBRARIES)
|
||||
#mark_as_advanced(MPFR_LIBRARIES_DIR)
|
||||
|
|
|
|||
Loading…
Reference in New Issue