blob: 207b770c71cb0cfc677f9c3065c3a3cfe08d30ea [file] [log] [blame]
Pascal Bachd5f87e12014-12-12 15:59:17 +01001#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
19
20
21include(CMakeDependentOption)
22
Nobuaki Sukegawaca939362015-11-14 00:23:40 +090023set(THRIFT_COMPILER "" CACHE FILEPATH "External Thrift compiler to use during build")
24
Pascal Bachd5f87e12014-12-12 15:59:17 +010025# Additional components
26option(BUILD_COMPILER "Build Thrift compiler" ON)
Nobuaki Sukegawaca939362015-11-14 00:23:40 +090027
28if(BUILD_COMPILER OR EXISTS ${THRIFT_COMPILER})
29 set(HAVE_COMPILER ON)
30endif()
31CMAKE_DEPENDENT_OPTION(BUILD_TESTING "Build with unit tests" ON "HAVE_COMPILER" OFF)
32CMAKE_DEPENDENT_OPTION(BUILD_EXAMPLES "Build examples" ON "HAVE_COMPILER" OFF)
33CMAKE_DEPENDENT_OPTION(BUILD_TUTORIALS "Build Thrift tutorials" ON "HAVE_COMPILER" OFF)
Marco Molteni7f477922015-04-15 20:46:48 +020034option(BUILD_LIBRARIES "Build Thrift libraries" ON)
Pascal Bachd5f87e12014-12-12 15:59:17 +010035
36# Libraries to build
37
38# Each language library can be enabled or disabled using the WITH_<LANG> flag.
39# By default CMake checks if the required dependencies for a language are present
40# and enables the library if all are found. This means the default is to build as
41# much as possible but leaving out libraries if their dependencies are not met.
42
James E. King, III07f59972017-03-10 06:18:33 -050043option(WITH_BOOST_STATIC "Build with Boost static link library" OFF)
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +090044set(Boost_USE_STATIC_LIBS ${WITH_BOOST_STATIC})
45if (NOT WITH_BOOST_STATIC)
46 add_definitions(-DBOOST_ALL_DYN_LINK)
47 add_definitions(-DBOOST_TEST_DYN_LINK)
48endif()
49
Pascal Bachd5f87e12014-12-12 15:59:17 +010050# C++
Roger Meier3b99c972015-04-20 22:49:48 +020051option(WITH_CPP "Build C++ Thrift library" ON)
Nobuaki Sukegawa33744b02016-01-03 14:24:39 +090052if(WITH_CPP)
Nobuaki Sukegawa33744b02016-01-03 14:24:39 +090053 # NOTE: Currently the following options are C++ specific,
54 # but in future other libraries might reuse them.
55 # So they are not dependent on WITH_CPP but setting them without WITH_CPP currently
56 # has no effect.
57 if(ZLIB_LIBRARY)
58 # FindZLIB.cmake does not normalize path so we need to do it ourselves.
59 file(TO_CMAKE_PATH ${ZLIB_LIBRARY} ZLIB_LIBRARY)
60 endif()
61 find_package(ZLIB QUIET)
62 CMAKE_DEPENDENT_OPTION(WITH_ZLIB "Build with ZLIB support" ON
63 "ZLIB_FOUND" OFF)
64 find_package(Libevent QUIET)
65 CMAKE_DEPENDENT_OPTION(WITH_LIBEVENT "Build with libevent support" ON
66 "Libevent_FOUND" OFF)
67 find_package(Qt4 QUIET COMPONENTS QtCore QtNetwork)
68 CMAKE_DEPENDENT_OPTION(WITH_QT4 "Build with Qt4 support" ON
69 "QT4_FOUND" OFF)
70 find_package(Qt5 QUIET COMPONENTS Core Network)
71 CMAKE_DEPENDENT_OPTION(WITH_QT5 "Build with Qt5 support" ON
72 "Qt5_FOUND" OFF)
73 if(${WITH_QT4} AND ${WITH_QT5} AND ${CMAKE_MAJOR_VERSION} LESS 3)
74 # cmake < 3.0.0 causes conflict when building both Qt4 and Qt5
75 set(WITH_QT4 OFF)
76 endif()
77 find_package(OpenSSL QUIET)
78 CMAKE_DEPENDENT_OPTION(WITH_OPENSSL "Build with OpenSSL support" ON
79 "OPENSSL_FOUND" OFF)
James E. King IIIc9ac8d22019-01-07 16:46:45 -050080 # if disabled, builds with posix thread class - deprecated and will be removed...
cyyc109e012019-01-05 13:45:07 +080081 option(WITH_STDTHREADS "Build with C++ std::thread support" ON)
Nobuaki Sukegawa33744b02016-01-03 14:24:39 +090082endif()
Roger Meier3b99c972015-04-20 22:49:48 +020083CMAKE_DEPENDENT_OPTION(BUILD_CPP "Build C++ library" ON
James E. King IIIc9ac8d22019-01-07 16:46:45 -050084 "BUILD_LIBRARIES;WITH_CPP" OFF)
James E. King, III71eba642017-01-25 20:41:06 -050085CMAKE_DEPENDENT_OPTION(WITH_PLUGIN "Build compiler plugin support" OFF
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +090086 "BUILD_COMPILER;BUILD_CPP" OFF)
Pascal Bachd5f87e12014-12-12 15:59:17 +010087
88# C GLib
Roger Meier3b99c972015-04-20 22:49:48 +020089option(WITH_C_GLIB "Build C (GLib) Thrift library" ON)
Nobuaki Sukegawa33744b02016-01-03 14:24:39 +090090if(WITH_C_GLIB)
91 find_package(GLIB QUIET COMPONENTS gobject)
92endif()
Roger Meier3b99c972015-04-20 22:49:48 +020093CMAKE_DEPENDENT_OPTION(BUILD_C_GLIB "Build C (GLib) library" ON
94 "BUILD_LIBRARIES;WITH_C_GLIB;GLIB_FOUND" OFF)
Nobuaki Sukegawa33744b02016-01-03 14:24:39 +090095
James E. King IIIc9ac8d22019-01-07 16:46:45 -050096 #if(BUILD_C_GLIB AND BUILD_TESTING)
97 # find_package(Boost 1.53 REQUIRED)
98 #endif()
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +090099
Pascal Bachd5f87e12014-12-12 15:59:17 +0100100# Java
Roger Meier3b99c972015-04-20 22:49:48 +0200101option(WITH_JAVA "Build Java Thrift library" ON)
Nobuaki Sukegawaca939362015-11-14 00:23:40 +0900102if(ANDROID)
103 find_package(Gradle QUIET)
104 CMAKE_DEPENDENT_OPTION(BUILD_JAVA "Build Java library" ON
105 "BUILD_LIBRARIES;WITH_JAVA;GRADLE_FOUND" OFF)
106else()
Alex Volanis7004a612018-01-24 10:30:13 -0500107 find_package(Gradlew QUIET)
Pascal Bach665844e2015-12-01 11:02:14 +0100108 find_package(Java QUIET)
Nobuaki Sukegawaca939362015-11-14 00:23:40 +0900109 CMAKE_DEPENDENT_OPTION(BUILD_JAVA "Build Java library" ON
Alex Volanis7004a612018-01-24 10:30:13 -0500110 "BUILD_LIBRARIES;WITH_JAVA;JAVA_FOUND;GRADLEW_FOUND" OFF)
Nobuaki Sukegawaca939362015-11-14 00:23:40 +0900111endif()
Roger Meier26593812015-04-12 16:10:35 +0200112
113# Python
Roger Meier3b99c972015-04-20 22:49:48 +0200114option(WITH_PYTHON "Build Python Thrift library" ON)
115find_package(PythonInterp QUIET) # for Python executable
116find_package(PythonLibs QUIET) # for Python.h
117CMAKE_DEPENDENT_OPTION(BUILD_PYTHON "Build Python library" ON
Nobuaki Sukegawabf9fa902016-09-04 18:49:21 +0900118 "BUILD_LIBRARIES;WITH_PYTHON;PYTHONLIBS_FOUND" OFF)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100119
Nobuaki Sukegawa27378fa2015-10-29 00:41:39 +0900120# Haskell
121option(WITH_HASKELL "Build Haskell Thrift library" ON)
122find_package(GHC QUIET)
123find_package(Cabal QUIET)
124CMAKE_DEPENDENT_OPTION(BUILD_HASKELL "Build GHC library" ON
125 "BUILD_LIBRARIES;WITH_HASKELL;GHC_FOUND;CABAL_FOUND" OFF)
126
Pascal Bachd5f87e12014-12-12 15:59:17 +0100127# Common library options
128option(WITH_SHARED_LIB "Build shared libraries" ON)
129option(WITH_STATIC_LIB "Build static libraries" ON)
Jim King9de9b1f2015-04-30 16:03:34 -0400130if (NOT WITH_SHARED_LIB AND NOT WITH_STATIC_LIB)
131 message(FATAL_ERROR "Cannot build with both shared and static outputs disabled!")
132endif()
Pascal Bachd5f87e12014-12-12 15:59:17 +0100133
134#NOTE: C++ compiler options are defined in the lib/cpp/CMakeLists.txt
135
136# Visual Studio only options
137if(MSVC)
Jim King9de9b1f2015-04-30 16:03:34 -0400138option(WITH_MT "Build using MT instead of MD (MSVC only)" OFF)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100139endif(MSVC)
140
Roger Meier3b99c972015-04-20 22:49:48 +0200141macro(MESSAGE_DEP flag summary)
142if(NOT ${flag})
143 message(STATUS " - ${summary}")
144endif()
145endmacro(MESSAGE_DEP flag summary)
146
Pascal Bachd5f87e12014-12-12 15:59:17 +0100147macro(PRINT_CONFIG_SUMMARY)
148message(STATUS "----------------------------------------------------------")
Antonio Di Monaco796667b2016-01-04 23:05:19 +0100149message(STATUS "Thrift version: ${thrift_VERSION} (${thrift_VERSION_MAJOR}.${thrift_VERSION_MINOR}.${thrift_VERSION_PATCH})")
150message(STATUS "Thrift package version: ${PACKAGE_VERSION}")
Pascal Bachd5f87e12014-12-12 15:59:17 +0100151message(STATUS "Build configuration Summary")
Antonio Di Monaco796667b2016-01-04 23:05:19 +0100152message(STATUS " Build Thrift compiler: ${BUILD_COMPILER}")
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +0900153message(STATUS " Build compiler plugin support: ${WITH_PLUGIN}")
Antonio Di Monaco796667b2016-01-04 23:05:19 +0100154message(STATUS " Build with unit tests: ${BUILD_TESTING}")
Nobuaki Sukegawaca939362015-11-14 00:23:40 +0900155MESSAGE_DEP(HAVE_COMPILER "Disabled because BUILD_THRIFT=OFF and no valid THRIFT_COMPILER is given")
Antonio Di Monaco796667b2016-01-04 23:05:19 +0100156message(STATUS " Build examples: ${BUILD_EXAMPLES}")
Nobuaki Sukegawaca939362015-11-14 00:23:40 +0900157MESSAGE_DEP(HAVE_COMPILER "Disabled because BUILD_THRIFT=OFF and no valid THRIFT_COMPILER is given")
Antonio Di Monaco796667b2016-01-04 23:05:19 +0100158message(STATUS " Build Thrift libraries: ${BUILD_LIBRARIES}")
Pascal Bachd5f87e12014-12-12 15:59:17 +0100159message(STATUS " Language libraries:")
Antonio Di Monaco796667b2016-01-04 23:05:19 +0100160message(STATUS " Build C++ library: ${BUILD_CPP}")
James E. King, IIIc9877fb2016-11-14 10:20:52 -0500161MESSAGE_DEP(WITH_CPP "Disabled by WITH_CPP=OFF")
James E. King, III43e959b2017-04-04 13:04:29 -0400162message(STATUS " C++ Language Level: ${CXX_LANGUAGE_LEVEL}")
Antonio Di Monaco796667b2016-01-04 23:05:19 +0100163message(STATUS " Build C (GLib) library: ${BUILD_C_GLIB}")
James E. King, IIIc9877fb2016-11-14 10:20:52 -0500164MESSAGE_DEP(WITH_C_GLIB "Disabled by WITH_C_GLIB=OFF")
Roger Meier3b99c972015-04-20 22:49:48 +0200165MESSAGE_DEP(GLIB_FOUND "GLib missing")
Antonio Di Monaco796667b2016-01-04 23:05:19 +0100166message(STATUS " Build Java library: ${BUILD_JAVA}")
James E. King, IIIc9877fb2016-11-14 10:20:52 -0500167MESSAGE_DEP(WITH_JAVA "Disabled by WITH_JAVA=OFF")
Nobuaki Sukegawaca939362015-11-14 00:23:40 +0900168if(ANDROID)
169 MESSAGE_DEP(GRADLE_FOUND "Gradle missing")
170else()
171 MESSAGE_DEP(JAVA_FOUND "Java Runtime missing")
Alex Volanis7004a612018-01-24 10:30:13 -0500172 MESSAGE_DEP(GRADLEW_FOUND "Gradle Wrapper missing")
Nobuaki Sukegawaca939362015-11-14 00:23:40 +0900173endif()
Antonio Di Monaco796667b2016-01-04 23:05:19 +0100174message(STATUS " Build Python library: ${BUILD_PYTHON}")
James E. King, IIIc9877fb2016-11-14 10:20:52 -0500175MESSAGE_DEP(WITH_PYTHON "Disabled by WITH_PYTHON=OFF")
Roger Meier3b99c972015-04-20 22:49:48 +0200176MESSAGE_DEP(PYTHONLIBS_FOUND "Python libraries missing")
Antonio Di Monaco796667b2016-01-04 23:05:19 +0100177message(STATUS " Build Haskell library: ${BUILD_HASKELL}")
James E. King, IIIc9877fb2016-11-14 10:20:52 -0500178MESSAGE_DEP(WITH_HASKELL "Disabled by WITH_HASKELL=OFF")
Nobuaki Sukegawa27378fa2015-10-29 00:41:39 +0900179MESSAGE_DEP(GHC_FOUND "GHC missing")
180MESSAGE_DEP(CABAL_FOUND "Cabal missing")
Pascal Bachd5f87e12014-12-12 15:59:17 +0100181message(STATUS " Library features:")
Antonio Di Monaco796667b2016-01-04 23:05:19 +0100182message(STATUS " Build shared libraries: ${WITH_SHARED_LIB}")
183message(STATUS " Build static libraries: ${WITH_STATIC_LIB}")
James E. King, III07f59972017-03-10 06:18:33 -0500184message(STATUS " Build with Boost static link library: ${WITH_BOOST_STATIC}")
Antonio Di Monaco796667b2016-01-04 23:05:19 +0100185message(STATUS " Build with C++ std::thread support: ${WITH_STDTHREADS}")
James E. King, III07f59972017-03-10 06:18:33 -0500186message(STATUS " Build with libevent support: ${WITH_LIBEVENT}")
187message(STATUS " Build with OpenSSL support: ${WITH_OPENSSL}")
188message(STATUS " Build with Qt4 support: ${WITH_QT4}")
189message(STATUS " Build with Qt5 support: ${WITH_QT5}")
190message(STATUS " Build with ZLIB support: ${WITH_ZLIB}")
Pascal Bachd5f87e12014-12-12 15:59:17 +0100191message(STATUS "----------------------------------------------------------")
192endmacro(PRINT_CONFIG_SUMMARY)