blob: c1a6a373989dd4d13108a0d8f039c8b11447e711 [file] [log] [blame]
Adam Langley07100c62015-01-16 15:20:54 -08001cmake_minimum_required (VERSION 2.8.10)
Adam Langley95c29f32014-06-20 12:00:00 -07002
3project (BoringSSL)
4
Adam Langley843ab662015-04-28 17:46:58 -07005if(ANDROID)
6 # Android-NDK CMake files reconfigure the path and so Go and Perl won't be
7 # found. However, ninja will still find them in $PATH if we just name them.
8 set(PERL_EXECUTABLE "perl")
9 set(GO_EXECUTABLE "go")
10else()
11 find_package(Perl REQUIRED)
12 find_program(GO_EXECUTABLE go)
13endif()
David Benjamin3ce3c362015-02-23 13:06:19 -050014
David Benjamind27eda02015-03-05 01:19:27 -050015if (NOT GO_EXECUTABLE)
16 message(FATAL_ERROR "Could not find Go")
17endif()
18
Brian Smith1d75c8b2015-01-23 17:25:44 -080019if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
Adam Langley4a0f0c42015-01-28 16:37:10 -080020 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Werror -ggdb -fvisibility=hidden")
21 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Werror -ggdb -std=c++0x -fvisibility=hidden")
Adam Langley95c29f32014-06-20 12:00:00 -070022elseif(MSVC)
Brian Smithefed2212015-01-28 16:20:02 -080023 set(MSVC_DISABLED_WARNINGS_LIST
24 "C4100" # 'exarg' : unreferenced formal parameter
25 "C4127" # conditional expression is constant
26 "C4200" # nonstandard extension used : zero-sized array in
27 # struct/union.
David Benjamin3673be72015-02-11 15:12:05 -050028 "C4210" # nonstandard extension used : function given file scope
Brian Smithefed2212015-01-28 16:20:02 -080029 "C4242" # 'function' : conversion from 'int' to 'uint8_t',
30 # possible loss of data
31 "C4244" # 'function' : conversion from 'int' to 'uint8_t',
32 # possible loss of data
33 "C4245" # 'initializing' : conversion from 'long' to
34 # 'unsigned long', signed/unsigned mismatch
David Benjamin3673be72015-02-11 15:12:05 -050035 "C4267" # conversion from 'size_t' to 'int', possible loss of data
David Benjamin3673be72015-02-11 15:12:05 -050036 "C4371" # layout of class may have changed from a previous version of the
37 # compiler due to better packing of member '...'
38 "C4388" # signed/unsigned mismatch
Brian Smithefed2212015-01-28 16:20:02 -080039 "C4296" # '>=' : expression is always true
40 "C4350" # behavior change: 'std::_Wrap_alloc...'
41 "C4365" # '=' : conversion from 'size_t' to 'int',
42 # signed/unsigned mismatch
43 "C4389" # '!=' : signed/unsigned mismatch
44 "C4510" # 'argument' : default constructor could not be generated
45 "C4512" # 'argument' : assignment operator could not be generated
46 "C4514" # 'function': unreferenced inline function has been removed
47 "C4548" # expression before comma has no effect; expected expression with
48 # side-effect" caused by FD_* macros.
49 "C4610" # struct 'argument' can never be instantiated - user defined
50 # constructor required.
David Benjamin3673be72015-02-11 15:12:05 -050051 "C4625" # copy constructor could not be generated because a base class
52 # copy constructor is inaccessible or deleted
53 "C4626" # assignment operator could not be generated because a base class
54 # assignment operator is inaccessible or deleted
Brian Smithefed2212015-01-28 16:20:02 -080055 "C4706" # assignment within conditional expression
56 "C4710" # 'function': function not inlined
57 "C4711" # function 'function' selected for inline expansion
58 "C4800" # 'int' : forcing value to bool 'true' or 'false'
59 # (performance warning)
60 "C4820" # 'bytes' bytes padding added after construct 'member_name'
61 "C4996" # 'read': The POSIX name for this item is deprecated. Instead,
62 # use the ISO C++ conformant name: _read.
63 )
64 string(REPLACE "C" " -wd" MSVC_DISABLED_WARNINGS_STR
65 ${MSVC_DISABLED_WARNINGS_LIST})
66 set(CMAKE_C_FLAGS "-Wall -WX ${MSVC_DISABLED_WARNINGS_STR}")
67 set(CMAKE_CXX_FLAGS "-Wall -WX ${MSVC_DISABLED_WARNINGS_STR}")
Adam Langley4a0f0c42015-01-28 16:37:10 -080068 add_definitions(-D_HAS_EXCEPTIONS=0)
Brian Smitha87de9b2015-01-28 20:34:47 -080069 add_definitions(-DWIN32_LEAN_AND_MEAN)
David Benjamin0e434b92015-04-02 13:20:01 -040070 add_definitions(-DNOMINMAX)
Adam Langley95c29f32014-06-20 12:00:00 -070071endif()
72
David Benjaminb826c0d2015-02-28 00:00:44 -050073if((CMAKE_COMPILER_IS_GNUCXX AND CMAKE_C_COMPILER_VERSION VERSION_GREATER "4.7.99") OR
Brian Smith1d75c8b2015-01-23 17:25:44 -080074 CMAKE_CXX_COMPILER_ID MATCHES "Clang")
Adam Langley4a0f0c42015-01-28 16:37:10 -080075 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wshadow")
76 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wshadow")
Adam Langley07100c62015-01-16 15:20:54 -080077endif()
78
Adam Langley6f2e7332015-05-15 12:01:29 -070079if((CMAKE_COMPILER_IS_GNUCXX AND CMAKE_C_COMPILER_VERSION VERSION_GREATER "4.8.99") OR
80 CMAKE_CXX_COMPILER_ID MATCHES "Clang")
81 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c11 -D_XOPEN_SOURCE=700")
82endif()
83
Adam Langleyeb7d2ed2014-07-30 16:02:14 -070084add_definitions(-DBORINGSSL_IMPLEMENTATION)
85
David Benjamin507c1ee2015-01-28 00:50:21 -050086if (BUILD_SHARED_LIBS)
Adam Langley4a0f0c42015-01-28 16:37:10 -080087 add_definitions(-DBORINGSSL_SHARED_LIBRARY)
88 # Enable position-independent code globally. This is needed because
89 # some library targets are OBJECT libraries.
90 set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
David Benjamin507c1ee2015-01-28 00:50:21 -050091endif()
92
Adam Langley95c29f32014-06-20 12:00:00 -070093if (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64")
Adam Langley4a0f0c42015-01-28 16:37:10 -080094 set(ARCH "x86_64")
Piotr Sikora1d8adf12014-07-31 03:09:49 -070095elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "amd64")
Adam Langley4a0f0c42015-01-28 16:37:10 -080096 set(ARCH "x86_64")
Adam Langley95c29f32014-06-20 12:00:00 -070097elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "AMD64")
Adam Langley4a0f0c42015-01-28 16:37:10 -080098 # cmake reports AMD64 on Windows, but we might be building for 32-bit.
99 if (CMAKE_CL_64)
100 set(ARCH "x86_64")
101 else()
102 set(ARCH "x86")
103 endif()
Adam Langley95c29f32014-06-20 12:00:00 -0700104elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86")
Adam Langley4a0f0c42015-01-28 16:37:10 -0800105 set(ARCH "x86")
Piotr Sikora1d8adf12014-07-31 03:09:49 -0700106elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "i386")
Adam Langley4a0f0c42015-01-28 16:37:10 -0800107 set(ARCH "x86")
Lukas Tribusd83f38c2014-08-11 13:27:44 -0700108elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "i686")
Adam Langley4a0f0c42015-01-28 16:37:10 -0800109 set(ARCH "x86")
Adam Langley95c29f32014-06-20 12:00:00 -0700110elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "arm")
Adam Langley4a0f0c42015-01-28 16:37:10 -0800111 set(ARCH "arm")
Joel Klinghed1550a842015-05-29 15:06:45 +0200112elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "armv6")
113 set(ARCH "arm")
Adam Langley843ab662015-04-28 17:46:58 -0700114elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "armv7-a")
115 set(ARCH "arm")
Adam Langley3e652652015-01-09 15:44:37 -0800116elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "aarch64")
Adam Langley4a0f0c42015-01-28 16:37:10 -0800117 set(ARCH "aarch64")
Adam Langley95c29f32014-06-20 12:00:00 -0700118else()
Adam Langley4a0f0c42015-01-28 16:37:10 -0800119 message(FATAL_ERROR "Unknown processor:" ${CMAKE_SYSTEM_PROCESSOR})
Adam Langley95c29f32014-06-20 12:00:00 -0700120endif()
121
Adam Langley843ab662015-04-28 17:46:58 -0700122if (ANDROID AND ${ARCH} STREQUAL "arm")
123 # The Android-NDK CMake files somehow fail to set the -march flag for
124 # assembly files. Without this flag, the compiler believes that it's
125 # building for ARMv5.
Joel Klinghed1550a842015-05-29 15:06:45 +0200126 set(CMAKE_ASM_FLAGS "${CMAKE_ASM_FLAGS} -march=${CMAKE_SYSTEM_PROCESSOR}")
Adam Langley843ab662015-04-28 17:46:58 -0700127endif()
128
Nico Weberdeb52842014-11-18 12:14:46 -0800129if (${ARCH} STREQUAL "x86" AND APPLE)
Adam Langley4a0f0c42015-01-28 16:37:10 -0800130 # With CMake 2.8.x, ${CMAKE_SYSTEM_PROCESSOR} evalutes to i386 on OS X,
131 # but clang defaults to 64-bit builds on OS X unless otherwise told.
132 # Set ARCH to x86_64 so clang and CMake agree. This is fixed in CMake 3.
133 set(ARCH "x86_64")
Nico Weberdeb52842014-11-18 12:14:46 -0800134endif()
135
David Benjamin27b08e92015-05-04 15:16:57 -0400136if (OPENSSL_NO_ASM)
137 add_definitions(-DOPENSSL_NO_ASM)
138 set(ARCH "generic")
139endif()
140
Adam Langley95c29f32014-06-20 12:00:00 -0700141add_subdirectory(crypto)
142add_subdirectory(ssl)
143add_subdirectory(ssl/test)
144add_subdirectory(tool)
Adam Langleyc004dfc2015-02-03 10:45:12 -0800145add_subdirectory(decrepit)