blob: 6e41ee9f75660bd9cf67011a331480d643132a9b [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 Langleyeb7d2ed2014-07-30 16:02:14 -070079add_definitions(-DBORINGSSL_IMPLEMENTATION)
80
David Benjamin507c1ee2015-01-28 00:50:21 -050081if (BUILD_SHARED_LIBS)
Adam Langley4a0f0c42015-01-28 16:37:10 -080082 add_definitions(-DBORINGSSL_SHARED_LIBRARY)
83 # Enable position-independent code globally. This is needed because
84 # some library targets are OBJECT libraries.
85 set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
David Benjamin507c1ee2015-01-28 00:50:21 -050086endif()
87
Adam Langley95c29f32014-06-20 12:00:00 -070088if (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64")
Adam Langley4a0f0c42015-01-28 16:37:10 -080089 set(ARCH "x86_64")
Piotr Sikora1d8adf12014-07-31 03:09:49 -070090elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "amd64")
Adam Langley4a0f0c42015-01-28 16:37:10 -080091 set(ARCH "x86_64")
Adam Langley95c29f32014-06-20 12:00:00 -070092elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "AMD64")
Adam Langley4a0f0c42015-01-28 16:37:10 -080093 # cmake reports AMD64 on Windows, but we might be building for 32-bit.
94 if (CMAKE_CL_64)
95 set(ARCH "x86_64")
96 else()
97 set(ARCH "x86")
98 endif()
Adam Langley95c29f32014-06-20 12:00:00 -070099elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86")
Adam Langley4a0f0c42015-01-28 16:37:10 -0800100 set(ARCH "x86")
Piotr Sikora1d8adf12014-07-31 03:09:49 -0700101elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "i386")
Adam Langley4a0f0c42015-01-28 16:37:10 -0800102 set(ARCH "x86")
Lukas Tribusd83f38c2014-08-11 13:27:44 -0700103elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "i686")
Adam Langley4a0f0c42015-01-28 16:37:10 -0800104 set(ARCH "x86")
Adam Langley95c29f32014-06-20 12:00:00 -0700105elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "arm")
Adam Langley4a0f0c42015-01-28 16:37:10 -0800106 set(ARCH "arm")
Adam Langley843ab662015-04-28 17:46:58 -0700107elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "armv7-a")
108 set(ARCH "arm")
Adam Langley3e652652015-01-09 15:44:37 -0800109elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "aarch64")
Adam Langley4a0f0c42015-01-28 16:37:10 -0800110 set(ARCH "aarch64")
Adam Langley95c29f32014-06-20 12:00:00 -0700111else()
Adam Langley4a0f0c42015-01-28 16:37:10 -0800112 message(FATAL_ERROR "Unknown processor:" ${CMAKE_SYSTEM_PROCESSOR})
Adam Langley95c29f32014-06-20 12:00:00 -0700113endif()
114
Adam Langley843ab662015-04-28 17:46:58 -0700115if (ANDROID AND ${ARCH} STREQUAL "arm")
116 # The Android-NDK CMake files somehow fail to set the -march flag for
117 # assembly files. Without this flag, the compiler believes that it's
118 # building for ARMv5.
119 set(CMAKE_ASM_FLAGS "${CMAKE_ASM_FLAGS} -march=armv7-a")
120endif()
121
Nico Weberdeb52842014-11-18 12:14:46 -0800122if (${ARCH} STREQUAL "x86" AND APPLE)
Adam Langley4a0f0c42015-01-28 16:37:10 -0800123 # With CMake 2.8.x, ${CMAKE_SYSTEM_PROCESSOR} evalutes to i386 on OS X,
124 # but clang defaults to 64-bit builds on OS X unless otherwise told.
125 # Set ARCH to x86_64 so clang and CMake agree. This is fixed in CMake 3.
126 set(ARCH "x86_64")
Nico Weberdeb52842014-11-18 12:14:46 -0800127endif()
128
David Benjamin27b08e92015-05-04 15:16:57 -0400129if (OPENSSL_NO_ASM)
130 add_definitions(-DOPENSSL_NO_ASM)
131 set(ARCH "generic")
132endif()
133
Adam Langley95c29f32014-06-20 12:00:00 -0700134add_subdirectory(crypto)
135add_subdirectory(ssl)
136add_subdirectory(ssl/test)
137add_subdirectory(tool)
Adam Langleyc004dfc2015-02-03 10:45:12 -0800138add_subdirectory(decrepit)