Salome HOME
Merge branch 'master' into V9_dev
[tools/configuration.git] / cmake / SalomeSetupPlatform.cmake
1 # Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 INCLUDE(CheckCXXCompilerFlag)
21
22 ## Detect architecture
23 IF(WIN32)
24   SET(MACHINE WINDOWS)
25 ELSE()
26   SET(MACHINE PCLINUX)
27 ENDIF()
28
29 ## Test for 64 bits
30 IF(CMAKE_SIZEOF_VOID_P EQUAL 8)
31   SET(MACHINE_IS_64 TRUE)
32 ELSE()
33   SET(MACHINE_IS_64 FALSE)
34 ENDIF()
35
36 ## Force CMAKE_BUILD_TYPE to Release if not set
37 IF(NOT CMAKE_BUILD_TYPE)
38   SET(CMAKE_BUILD_TYPE $ENV{CMAKE_BUILD_TYPE})
39 ENDIF(NOT CMAKE_BUILD_TYPE)
40 IF(NOT CMAKE_BUILD_TYPE)
41   SET(CMAKE_BUILD_TYPE Release)
42 ENDIF(NOT CMAKE_BUILD_TYPE)
43
44 ## Define the log level according to the build type
45 IF(CMAKE_BUILD_TYPE STREQUAL "DEBUG" OR CMAKE_BUILD_TYPE STREQUAL "Debug")
46   SET(PYLOGLEVEL DEBUG)
47 ELSE()
48   SET(PYLOGLEVEL WARNING)
49 ENDIF()
50
51 ## Treat all warnings as errors
52 IF(NOT (WIN32 OR APPLE))
53   OPTION(SALOME_DEBUG_WARNINGS "Treat warnings as errors" OFF)
54   MARK_AS_ADVANCED(SALOME_DEBUG_WARNINGS)
55   IF(SALOME_DEBUG_WARNINGS)
56     SET(CMAKE_C_FLAGS "-Werror")
57     SET(CMAKE_CXX_FLAGS "-Werror")
58   ENDIF()
59 ENDIF()
60
61 IF(WIN32)
62   ## Windows specific:  
63   ADD_DEFINITIONS(-D_CRT_SECURE_NO_WARNINGS)  # To disable windows warnings for strcpy, fopen, ...
64   ADD_DEFINITIONS(-D_SCL_SECURE_NO_WARNINGS)  # To disable windows warnings generated by checked iterators(e.g. std::copy, std::transform, ...)
65   ADD_DEFINITIONS(-DWNT -DWIN32)
66   ADD_DEFINITIONS(-D_WIN32_WINNT=0x0500)      # Windows 2000 or later API is required
67   ADD_DEFINITIONS(-DPPRO_NT)                  # For medfile
68
69   SET(PLATFORM_LIBS Ws2_32.lib)
70   LIST(APPEND PLATFORM_LIBS Userenv.lib)      # At least for GEOM suit
71
72   IF(MACHINE_IS_64)
73     SET(SIZE_OF_LONG 4)                       # Set sizeof(long) to 4 bytes
74   ELSE()
75     SET(SIZE_OF_LONG ${CMAKE_SIZEOF_VOID_P})  # Set sizeof(long) the same as size of pointers
76   ENDIF()
77 ELSE()
78   ## Linux specific:
79   SET(PLATFORM_LIBS dl)                       # Dynamic loading (dlopen, dlsym)
80   IF(MACHINE_IS_64) 
81     ADD_DEFINITIONS(-DPCLINUX64)
82   ENDIF(MACHINE_IS_64)
83 ENDIF()
84
85 ## define _DEBUG_ macro
86 IF(NOT CMAKE_BUILD_TYPE STREQUAL "RELEASE" AND NOT CMAKE_BUILD_TYPE STREQUAL "Release")
87   ADD_DEFINITIONS(-D_DEBUG_)
88 ENDIF()
89
90 ## Apple specific:
91 IF(APPLE)
92   # Default is clang(llvm) with mountain lion at least
93   OPTION(SALOME_APPLE_USE_GCC "Use GCC compiler" OFF)
94   MARK_AS_ADVANCED(SALOME_APPLE_USE_GCC)
95   IF(SALOME_APPLE_USE_GCC)
96     SET(CMAKE_C_COMPILER gcc)
97     SET(CMAKE_CXX_COMPILER g++)
98   ENDIF()
99 ENDIF()
100
101 # Compiler flags for coverage testing
102 IF(NOT WIN32) 
103   OPTION(SALOME_BUILD_FOR_GCOV "Add the compilation flags for GCov/LCov" OFF)
104   MARK_AS_ADVANCED(SALOME_BUILD_FOR_GCOV)
105   IF(SALOME_BUILD_FOR_GCOV)
106     SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fprofile-arcs -ftest-coverage")
107     SET(CMAKE_C_FLAGS    "${CMAKE_C_FLAGS} -fprofile-arcs -ftest-coverage")
108   ENDIF()
109 ENDIF()
110
111 # Compiler flag to disable treating alternative C++ tokens (compatibility with MSVS)
112 CHECK_CXX_COMPILER_FLAG("-fno-operator-names" COMPILER_SUPPORTS_NO_OPERATOR_NAMES)
113 IF(COMPILER_SUPPORTS_NO_OPERATOR_NAMES)
114   SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-operator-names")
115 ENDIF()
116
117 IF(NOT NO_CXX11_SUPPORT)
118   # C++11 support
119   CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
120   CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
121   IF(COMPILER_SUPPORTS_CXX11)
122     MESSAGE(STATUS "Enable C++11 support")
123     SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
124   ELSEIF(COMPILER_SUPPORTS_CXX0X)
125     MESSAGE(STATUS "Enable C++0x support")
126     SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
127   ELSE()
128     MESSAGE(WARNING "Compiler ${CMAKE_CXX_COMPILER} has no C++11 support.")
129   ENDIF()
130 ENDIF()