mirror of https://github.com/CGAL/cgal
56 lines
1.7 KiB
CMake
56 lines
1.7 KiB
CMake
# This allows else(), endif(), etc... (without repeating the expression)
|
|
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
|
|
|
|
if ( "${CMAKE_SOURCE_DIR}" STREQUAL "${PROJECT_SOURCE_DIR}" )
|
|
set( CGAL_IS_CURRENT_SCRIPT_TOP_LEVEL TRUE )
|
|
else()
|
|
set( CGAL_IS_CURRENT_SCRIPT_TOP_LEVEL FALSE )
|
|
endif()
|
|
|
|
include(CGAL_Macros)
|
|
|
|
# Common settings for CGAL cmake scripts
|
|
if( NOT CGAL_COMMON_FILE_INCLUDED )
|
|
set(CGAL_COMMON_FILE_INCLUDED 1 )
|
|
|
|
# CMAKE_ROOT must be properly configured, but is not by the CMake windows installer, so check here
|
|
if (NOT CMAKE_ROOT)
|
|
message( FATAL_ERROR "CMAKE_ROOT enviroment variable not set. It should point to the directory where CMake is installed.")
|
|
endif()
|
|
|
|
if ( COMMAND cmake_policy )
|
|
cmake_policy( SET CMP0007 OLD )
|
|
endif()
|
|
|
|
if ( "${BUILD_SHARED_LIBS}" STREQUAL "" )
|
|
if ( WIN32 )
|
|
set(BUILD_SHARED_LIBS OFF)
|
|
else()
|
|
set(BUILD_SHARED_LIBS ON)
|
|
endif()
|
|
endif()
|
|
|
|
if ( BUILD_SHARED_LIBS )
|
|
message( STATUS "Building shared libraries" )
|
|
else()
|
|
message( STATUS "Building static libraries" )
|
|
endif()
|
|
|
|
if ( WIN32 )
|
|
find_program(CMAKE_UNAME uname /bin /usr/bin /usr/local/bin )
|
|
if(CMAKE_UNAME)
|
|
exec_program(uname ARGS -s OUTPUT_VARIABLE CMAKE_SYSTEM_NAME2)
|
|
if ( CMAKE_SYSTEM_NAME2 MATCHES "CYGWIN" )
|
|
message( STATUS "This is the Windows CMake running within the cygwin platform." )
|
|
set( CGAL_WIN32_CMAKE_ON_CYGWIN TRUE CACHE INTERNAL "This is the cygwin platform." )
|
|
endif()
|
|
endif()
|
|
hide_variable(CMAKE_UNAME)
|
|
endif()
|
|
|
|
set(CMAKE_COLORMAKEFILE ON)
|
|
|
|
# Needed by the testsuite results parser
|
|
set(CMAKE_VERBOSE_MAKEFILE ON)
|
|
|
|
endif() |