d40bd732297cc7db29189b80ef77f7ef75354b27
[platform/upstream/VK-GL-CTS.git] / framework / delibs / cmake / Defs.cmake
1 #-------------------------------------------------------------------------
2 # drawElements CMake utilities
3 # ----------------------------
4 #
5 # Copyright 2014 The Android Open Source Project
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #      http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 #-------------------------------------------------------------------------
20
21 # \note Always include this file in main project file, with NO_POLICY_SCOPE
22 #       AFTER project(name) statement.
23 #
24 # project(deproject)
25 # include(delibs/cmake/Defs.cmake NO_POLICY_SCOPE)
26
27 cmake_policy(VERSION 2.6)
28
29 # \todo [pyry] More intelligent detection, perhaps use some script?
30
31 # cmake files can use DE_DEFS variable to check that this file has been included
32 set(DE_DEFS 1)
33
34 macro (DE_MAKE_ENV_BOOL BASE VALUE)
35         if (${BASE} STREQUAL ${BASE}_${VALUE})
36                 set(${BASE}_IS_${VALUE} 1)
37         else ()
38                 set(${BASE}_IS_${VALUE} 0)
39         endif ()
40 endmacro ()
41
42 # Add build type RelWithAsserts
43 set(CMAKE_CXX_FLAGS_RELWITHASSERTS ${CMAKE_CXX_FLAGS_RELEASE})
44 set(CMAKE_C_FLAGS_RELWITHASSERTS ${CMAKE_C_FLAGS_RELEASE})
45 set(CMAKE_EXE_LINKER_FLAGS_RELWITHASSERTS ${CMAKE_EXE_LINKER_FLAGS_RELEASE})
46 set(CMAKE_SHARED_LINKER_FLAGS_RELWITHASSERTS ${CMAKE_SHARED_LINKER_FLAGS_RELEASE})
47
48 # Os detection
49 if (NOT DEFINED DE_OS)
50         if (WIN32)
51                 set(DE_OS "DE_OS_WIN32")
52         elseif (APPLE)
53                 set(DE_OS "DE_OS_OSX")
54         elseif (UNIX)
55                 set(DE_OS "DE_OS_UNIX")
56         else ()
57                 set(DE_OS "DE_OS_VANILLA")
58         endif ()
59 endif ()
60
61 # DE_OS_IS_{PLATFORM} definitions
62 DE_MAKE_ENV_BOOL("DE_OS" "VANILLA")
63 DE_MAKE_ENV_BOOL("DE_OS" "WIN32")
64 DE_MAKE_ENV_BOOL("DE_OS" "UNIX")
65 DE_MAKE_ENV_BOOL("DE_OS" "WINCE")
66 DE_MAKE_ENV_BOOL("DE_OS" "OSX")
67 DE_MAKE_ENV_BOOL("DE_OS" "ANDROID")
68 DE_MAKE_ENV_BOOL("DE_OS" "IOS")
69
70 # Prevent mixed compile with GCC and Clang
71 if (NOT ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU") EQUAL ("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU"))
72         message(FATAL_ERROR "CMake C and CXX compilers do not match. Both or neither must be GNU.")
73 elseif (NOT ("${CMAKE_C_COMPILER_ID}" MATCHES "Clang") EQUAL ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang"))
74         message(FATAL_ERROR "CMake C and CXX compilers do not match. Both or neither must be Clang.")
75 endif ()
76
77 # Compiler detection
78 if (NOT DEFINED DE_COMPILER)
79         # \note " x" postfix is to work around bug in CMake that causes
80         #       "MSVC" to translate to something completely different
81         if (("${CMAKE_C_COMPILER_ID} x" MATCHES "MSVC") OR MSVC)
82                 set(DE_COMPILER "DE_COMPILER_MSC")
83         elseif ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU")
84                 set(DE_COMPILER "DE_COMPILER_GCC")
85         elseif ("${CMAKE_C_COMPILER_ID}" MATCHES "Clang")
86                 set(DE_COMPILER "DE_COMPILER_CLANG")
87
88         # Guess based on OS
89         elseif (DE_OS_IS_WIN32)
90                 set(DE_COMPILER "DE_COMPILER_MSC")
91         elseif (DE_OS_IS_UNIX OR DE_OS_IS_ANDROID)
92                 set(DE_COMPILER "DE_COMPILER_GCC")
93         elseif (DE_OS_IS_OSX OR DE_OS_IS_IOS)
94                 set(DE_COMPILER "DE_COMPILER_CLANG")
95
96         else ()
97                 set(DE_COMPILER "DE_COMPILER_VANILLA")
98         endif ()
99 endif ()
100
101 # DE_COMPILER_IS_{COMPILER} definitions
102 DE_MAKE_ENV_BOOL("DE_COMPILER" "VANILLA")
103 DE_MAKE_ENV_BOOL("DE_COMPILER" "MSC")
104 DE_MAKE_ENV_BOOL("DE_COMPILER" "GCC")
105 DE_MAKE_ENV_BOOL("DE_COMPILER" "CLANG")
106
107 # Pointer size detection
108 if (NOT DEFINED DE_PTR_SIZE)
109         if (DEFINED CMAKE_SIZEOF_VOID_P)
110                 set(DE_PTR_SIZE ${CMAKE_SIZEOF_VOID_P})
111         else ()
112                 set(DE_PTR_SIZE 4)
113         endif ()
114 endif ()
115
116 # CPU detection
117 if (NOT DEFINED DE_CPU)
118         if (DE_PTR_SIZE EQUAL 8)
119                 set(DE_CPU "DE_CPU_X86_64")
120         else ()
121                 set(DE_CPU "DE_CPU_X86")
122         endif ()
123 endif ()
124
125 # DE_CPU_IS_{CPU} definitions
126 DE_MAKE_ENV_BOOL("DE_CPU" "VANILLA")
127 DE_MAKE_ENV_BOOL("DE_CPU" "X86")
128 DE_MAKE_ENV_BOOL("DE_CPU" "ARM")
129 DE_MAKE_ENV_BOOL("DE_CPU" "ARM_64")
130
131 # \note [petri] Re-wrote in this ugly manner, because CMake 2.6 seems to
132 #               barf about the parenthesis in the previous way. Ugh.
133 #if (NOT ((DE_PTR_SIZE EQUAL 4) OR (DE_PTR_SIZE EQUAL 8)))
134 if (DE_PTR_SIZE EQUAL 4)
135 elseif (DE_PTR_SIZE EQUAL 8)
136 else ()
137         message(FATAL_ERROR "DE_PTR_SIZE (${DE_PTR_SIZE}) is invalid")
138 endif ()
139
140 # Debug definitions
141 if (NOT DEFINED DE_DEBUG)
142         if (CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE STREQUAL "RelWithAsserts")
143                 set(DE_DEBUG 1)
144         else ()
145                 set(DE_DEBUG 0)
146         endif ()
147 endif ()
148
149 # Android API version
150 if (DE_OS_IS_ANDROID AND NOT DEFINED DE_ANDROID_API)
151         set(DE_ANDROID_API 5)
152 endif ()
153
154 message(STATUS "DE_OS          = ${DE_OS}")
155 message(STATUS "DE_COMPILER    = ${DE_COMPILER}")
156 message(STATUS "DE_CPU         = ${DE_CPU}")
157 message(STATUS "DE_PTR_SIZE    = ${DE_PTR_SIZE}")
158 message(STATUS "DE_DEBUG       = ${DE_DEBUG}")
159 if (DE_OS_IS_ANDROID)
160         message(STATUS "DE_ANDROID_API = ${DE_ANDROID_API}")
161 endif ()
162
163 # Expose definitions
164 if (DE_DEBUG)
165         add_definitions(-DDE_DEBUG)
166 endif ()
167
168 add_definitions("-DDE_OS=${DE_OS}")
169 add_definitions("-DDE_COMPILER=${DE_COMPILER}")
170 add_definitions("-DDE_CPU=${DE_CPU}")
171 add_definitions("-DDE_PTR_SIZE=${DE_PTR_SIZE}")
172
173 if (DE_OS_IS_ANDROID)
174         add_definitions("-DDE_ANDROID_API=${DE_ANDROID_API}")
175 endif ()