Salome HOME
Documentation about loading the module catalog.
[modules/yacs.git] / adm / cmake / SalomeSetupPlatform.cmake
1 # Copyright (C) 2007-2014  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 ## Detect architecture
21 IF(WIN32)
22   SET(MACHINE WINDOWS)
23 ELSE()
24   SET(MACHINE PCLINUX)
25 ENDIF()
26
27 ## Test for 64 bits
28 IF(CMAKE_SIZEOF_VOID_P EQUAL 8)
29   SET(MACHINE_IS_64 TRUE)
30 ELSE()
31   SET(MACHINE_IS_64 FALSE)
32 ENDIF()
33
34 ## Force CMAKE_BUILD_TYPE to Release if not set
35 IF(NOT CMAKE_BUILD_TYPE)
36   SET(CMAKE_BUILD_TYPE $ENV{CMAKE_BUILD_TYPE})
37 ENDIF(NOT CMAKE_BUILD_TYPE)
38 IF(NOT CMAKE_BUILD_TYPE)
39   SET(CMAKE_BUILD_TYPE Release)
40 ENDIF(NOT CMAKE_BUILD_TYPE)
41
42 ## Define the log level according to the build type
43 IF(CMAKE_BUILD_TYPE STREQUAL "DEBUG" OR CMAKE_BUILD_TYPE STREQUAL "Debug")
44   SET(PYLOGLEVEL DEBUG)
45 ELSE()
46   SET(PYLOGLEVEL WARNING)
47 ENDIF()
48
49 ## Make all warnings errors on non-windows platforms
50 #  CURRENTLY DISABLED
51 IF(NOT (WIN32 OR APPLE))
52   SET(ADD_WERROR ON)
53   SET(NAMES ACCEPT_SALOME_WARNINGS ACCEPT_${MODULE}_WARNINGS I_AM_A_TROLL_I_DO_NOT_FIX_${MODULE}_WARNINGS)
54   FOREACH(name ${NAMES})
55     SET(VAL $ENV{${name}})
56     IF("${VAL}" STREQUAL "0")
57       SET(ADD_WERROR ON)
58     ENDIF()
59     IF("${VAL}" STREQUAL "1")
60       SET(ADD_WERROR OFF)
61     ENDIF()
62   ENDFOREACH()
63   
64   IF(ADD_WERROR)
65 #    SET(CMAKE_C_FLAGS "-Werror")
66 #    SET(CMAKE_CXX_FLAGS "-Werror")
67   ENDIF()
68 ENDIF()
69
70 ## TODO: remove this ?
71 #IF(WIN32)
72 #    MARK_AS_ADVANCED(CLEAR CMAKE_CONFIGURATION_TYPES)
73 #    SET(CMAKE_CONFIGURATION_TYPES ${CMAKE_BUILD_TYPE} CACHE STRING "compilation types" FORCE)
74 #ELSE()
75 #    IF(CMAKE_BUILD_TYPE STREQUAL Debug)
76 #      SET(CMAKE_C_FLAGS_DEBUG "-g")
77 #      SET(CMAKE_CXX_FLAGS_DEBUG "-g")
78 #    ENDIF(CMAKE_BUILD_TYPE STREQUAL Debug)
79 #    IF(CMAKE_BUILD_TYPE STREQUAL Release)
80 #      SET(CMAKE_C_FLAGS_RELEASE "-O1 -DNDEBUG")
81 #      SET(CMAKE_CXX_FLAGS_RELEASE "-O1 -DNDEBUG")
82 #    ENDIF(CMAKE_BUILD_TYPE STREQUAL Release)
83 #ENDIF()
84
85 IF(WIN32)
86   ## Windows specific:  
87   ADD_DEFINITIONS(-D_CRT_SECURE_NO_WARNINGS)  # To disable windows warnings for strcpy, fopen, ...
88   ADD_DEFINITIONS(-D_SCL_SECURE_NO_WARNINGS)  # To disable windows warnings generated by checked iterators(e.g. std::copy, std::transform, ...)
89   ADD_DEFINITIONS(-DWNT -DWIN32)
90   ADD_DEFINITIONS(-D_WIN32_WINNT=0x0500)      # Windows 2000 or later API is required
91   ADD_DEFINITIONS(-DPPRO_NT)                  # For medfile
92   #ADD_DEFINITIONS(-D_USE_MATH_DEFINES)        # for MEDMEM
93     
94   SET(PLATFORM_LIBS Ws2_32.lib)
95   LIST(APPEND PLATFORM_LIBS Userenv.lib)      # At least for GEOM suit
96
97   # Disable iterator debugging on WINDOWS to avoid runtime error during checking iterators
98     # _SECURE_SCL 
99     #             If defined as 1, unsafe iterator use causes a runtime error. 
100     #             If defined as 0, checked iterators are disabled.
101     #             The default value for _SECURE_SCL is 1
102     # _SECURE_SCL_THROWS
103     #             If defined as 1, an out of range iterator use causes an exception at runtime.
104     #             If defined as 0, the program is terminated by calling invalid_parameter. 
105     #             The default value for _SECURE_SCL_THROWS is 0
106   
107   ADD_DEFINITIONS(-D_SECURE_SCL=0 -D_SECURE_SCL_THROWS=0)
108
109     # The symbol _HAS_ITERATOR_DEBUGGING can be used to turn off the iterator debugging feature in a debug build
110     #             If defined as 1, iterator debugging is enabled. 
111     #             If defined as 0, iterator debugging is disabled.
112     #             The default value for _HAS_ITERATOR_DEBUGGING is 1
113
114   IF(NOT CMAKE_BUILD_TYPE STREQUAL "RELEASE" AND NOT CMAKE_BUILD_TYPE STREQUAL "Release")
115     ADD_DEFINITIONS(-D_HAS_ITERATOR_DEBUGGING=0)  
116   ENDIF(NOT CMAKE_BUILD_TYPE STREQUAL "RELEASE" AND NOT CMAKE_BUILD_TYPE STREQUAL "Release")
117   
118   IF(MACHINE_IS_64)
119     SET(SIZE_OF_LONG 4)                          # set sizeof(long) to 4 byte
120   ELSE()
121     SET(SIZE_OF_LONG ${CMAKE_SIZEOF_VOID_P})     # set sizeof(long) the same as size of pointers
122   ENDIF()
123 ELSE()
124   ## Linux specific:
125   SET(PLATFORM_LIBS dl)    # Dynamic loading (dlopen, dlsym)
126   IF(MACHINE_IS_64) 
127     ADD_DEFINITIONS(-DPCLINUX64)
128   ENDIF(MACHINE_IS_64)
129 ENDIF()
130
131 ## define _DEBUG_ macro
132 IF(NOT CMAKE_BUILD_TYPE STREQUAL "RELEASE" AND NOT CMAKE_BUILD_TYPE STREQUAL "Release")
133   ADD_DEFINITIONS(-D_DEBUG_)
134 ENDIF()
135
136 ## Apple specific:
137 IF(APPLE)
138   SET(CMAKE_C_COMPILER gcc)
139   SET(CMAKE_CXX_COMPILER g++)
140   # because default is clang(llvm) with mountain lion at least
141 ENDIF()
142
143 # Compiler flags for coverage testing
144 IF(NOT WIN32) 
145   OPTION(SALOME_BUILD_FOR_GCOV "Add the compilation flags for GCov/LCov" OFF)
146   MARK_AS_ADVANCED(SALOME_BUILD_FOR_GCOV)
147   IF(SALOME_BUILD_FOR_GCOV)
148     SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fprofile-arcs -ftest-coverage")
149     SET(CMAKE_C_FLAGS    "${CMAKE_C_FLAGS} -fprofile-arcs -ftest-coverage")
150   ENDIF()
151 ENDIF()