gcc has an option -isystem, that can replace -I. The documentation is:
-isystem dir
Search dir for header files, after all directories specified by -I but
before the standard system directories. Mark it as a system directory,
so that it gets the same special treatment as is applied to the
standard system directories. If dir begins with "=", then the "=" will
be replaced by the sysroot prefix; see --sysroot and -isysroot.
The "special treatment" means that gcc will not warn about constructions in
headers in directories pointed by -isystem instead of -I.
In the CGAL testsuite, there are a lot of warnings that comes from
third-party libraries (mostly from Boost, but also from Eigen).
This patch tells cmake to use -isystem with gcc, for all CGAL 3rd-party
directories.
37 lines
1.1 KiB
CMake
37 lines
1.1 KiB
CMake
# This module setups the compiler for the BLAS libraries.
|
|
# It assumes that find_package(BLAS) was already called.
|
|
|
|
if ( BLAS_FOUND AND NOT BLAS_SETUP )
|
|
|
|
message( STATUS "UseBLAS" )
|
|
message( STATUS "BLAS include: ${BLAS_INCLUDE_DIR}" )
|
|
include_directories ( SYSTEM ${BLAS_INCLUDE_DIR} )
|
|
|
|
message( STATUS "BLAS definitions: ${BLAS_DEFINITIONS}" )
|
|
add_definitions( ${BLAS_DEFINITIONS} )
|
|
if ( "${BLAS_DEFINITIONS}" MATCHES ".*BLAS_USE_F2C.*" )
|
|
add_definitions( "-DCGAL_USE_F2C" )
|
|
endif()
|
|
|
|
if (BLAS_LIBRARIES_DIR)
|
|
message( STATUS "BLAS library directories: ${BLAS_LIBRARIES_DIR}" )
|
|
link_directories( ${BLAS_LIBRARIES_DIR} )
|
|
endif()
|
|
if (BLAS_LIBRARIES)
|
|
message( STATUS "BLAS libraries: ${BLAS_LIBRARIES}" )
|
|
link_libraries( ${BLAS_LIBRARIES} )
|
|
endif()
|
|
|
|
message( STATUS "BLAS link flags: ${BLAS_LINKER_FLAGS}" )
|
|
if ( BUILD_SHARED_LIBS )
|
|
uniquely_add_flags( CMAKE_SHARED_LINKER_FLAGS ${BLAS_LINKER_FLAGS} )
|
|
else()
|
|
uniquely_add_flags( CMAKE_MODULE_LINKER_FLAGS ${BLAS_LINKER_FLAGS} )
|
|
endif()
|
|
|
|
# Setup is done
|
|
set ( BLAS_SETUP TRUE )
|
|
|
|
endif()
|
|
|