Salome HOME
b1fd3a2d0e6134c18a2981d521720cb4750fa2d3
[tools/configuration.git] / cmake / SalomeSetupPlatform.cmake
1 # Copyright (C) 2007-2020  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   ADD_DEFINITIONS(-DUNICODE)                  # Unicode 
78   ADD_DEFINITIONS(-D_UNICODE)
79 ELSE()
80   ## Linux specific:
81   SET(PLATFORM_LIBS dl)                       # Dynamic loading (dlopen, dlsym)
82   IF(MACHINE_IS_64) 
83     ADD_DEFINITIONS(-DPCLINUX64)
84   ENDIF(MACHINE_IS_64)
85 ENDIF()
86
87 ## define _DEBUG_ macro
88 IF(NOT CMAKE_BUILD_TYPE STREQUAL "RELEASE" AND NOT CMAKE_BUILD_TYPE STREQUAL "Release")
89   ADD_DEFINITIONS(-D_DEBUG_)
90 ENDIF()
91
92 ## Apple specific:
93 IF(APPLE)
94   # Default is clang(llvm) with mountain lion at least
95   OPTION(SALOME_APPLE_USE_GCC "Use GCC compiler" OFF)
96   MARK_AS_ADVANCED(SALOME_APPLE_USE_GCC)
97   IF(SALOME_APPLE_USE_GCC)
98     SET(CMAKE_C_COMPILER gcc)
99     SET(CMAKE_CXX_COMPILER g++)
100   ENDIF()
101 ENDIF()
102
103 # Compiler flags for coverage testing
104 IF(NOT WIN32) 
105   OPTION(SALOME_BUILD_FOR_GCOV "Add the compilation flags for GCov/LCov" OFF)
106   MARK_AS_ADVANCED(SALOME_BUILD_FOR_GCOV)
107   IF(SALOME_BUILD_FOR_GCOV)
108     SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fprofile-arcs -ftest-coverage")
109     SET(CMAKE_C_FLAGS    "${CMAKE_C_FLAGS} -fprofile-arcs -ftest-coverage")
110   ENDIF()
111 ENDIF()
112
113 # Compiler flag to disable treating alternative C++ tokens (compatibility with MSVS)
114 CHECK_CXX_COMPILER_FLAG("-fno-operator-names" COMPILER_SUPPORTS_NO_OPERATOR_NAMES)
115 IF(COMPILER_SUPPORTS_NO_OPERATOR_NAMES)
116   SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-operator-names")
117 ENDIF()
118
119 IF(NOT NO_CXX11_SUPPORT)
120   # C++11 support
121   CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
122   CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
123   IF(COMPILER_SUPPORTS_CXX11)
124     MESSAGE(STATUS "Enable C++11 support")
125     SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
126   ELSEIF(COMPILER_SUPPORTS_CXX0X)
127     MESSAGE(STATUS "Enable C++0x support")
128     SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
129   ELSE()
130     MESSAGE(WARNING "Compiler ${CMAKE_CXX_COMPILER} has no C++11 support.")
131   ENDIF()
132 ENDIF()