blob: 059c3bf85ec9dc92ce19621e495f956cc9252681 [file] [log] [blame]
Pascal Bach6eb015a2014-04-17 16:19:07 +02001#
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
Nobuaki Sukegawad8c6a842016-10-02 14:21:55 +090020configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/thrift/version.h.in ${CMAKE_CURRENT_BINARY_DIR}/thrift/version.h)
James E. King, III7edc8fa2017-01-20 10:11:41 -050021if(MSVC)
22 # The winflexbison generator outputs some macros that conflict with the Visual Studio 2010 copy of stdint.h
23 # This might be fixed in later versions of Visual Studio, but an easy solution is to include stdint.h first
24 if(HAVE_STDINT_H)
25 add_definitions(-D__STDC_LIMIT_MACROS)
26 add_definitions(/FI"stdint.h")
27 endif(HAVE_STDINT_H)
28endif()
Pascal Bach6eb015a2014-04-17 16:19:07 +020029
30find_package(FLEX REQUIRED)
31find_package(BISON REQUIRED)
32
33# Create flex and bison files and build the lib parse static library
dtmuller052abc32016-07-26 11:58:28 +020034BISON_TARGET(thrifty ${CMAKE_CURRENT_SOURCE_DIR}/src/thrift/thrifty.yy ${CMAKE_CURRENT_BINARY_DIR}/thrift/thrifty.cc)
35FLEX_TARGET(thriftl ${CMAKE_CURRENT_SOURCE_DIR}/src/thrift/thriftl.ll ${CMAKE_CURRENT_BINARY_DIR}/thrift/thriftl.cc)
Pascal Bach6eb015a2014-04-17 16:19:07 +020036ADD_FLEX_BISON_DEPENDENCY(thriftl thrifty)
37
38# HACK: Work around the fact that bison crates a .hh file but we need a .h file
dtmuller052abc32016-07-26 11:58:28 +020039add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/thrift/thrifty.h
40 COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/thrift/thrifty.hh ${CMAKE_CURRENT_BINARY_DIR}/thrift/thrifty.h
41 DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/thrift/thrifty.hh
Pascal Bach6eb015a2014-04-17 16:19:07 +020042 )
43
44set(libparse_SOURCES
dtmuller052abc32016-07-26 11:58:28 +020045 ${CMAKE_CURRENT_BINARY_DIR}/thrift/thrifty.cc
46 ${CMAKE_CURRENT_BINARY_DIR}/thrift/thriftl.cc
47 ${CMAKE_CURRENT_BINARY_DIR}/thrift/thrifty.h
Pascal Bach6eb015a2014-04-17 16:19:07 +020048)
49
50add_library(libparse STATIC ${libparse_SOURCES})
51
52# Create the thrift compiler
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +090053set(compiler_core
dtmuller052abc32016-07-26 11:58:28 +020054 src/thrift/common.cc
55 src/thrift/generate/t_generator.cc
56 src/thrift/parse/t_typedef.cc
57 src/thrift/parse/parse.cc
58 ${CMAKE_CURRENT_BINARY_DIR}/thrift/version.h
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +090059)
60
61set(thrift-compiler_SOURCES
dtmuller052abc32016-07-26 11:58:28 +020062 src/thrift/main.cc
63 src/thrift/audit/t_audit.cpp
Pascal Bach6eb015a2014-04-17 16:19:07 +020064)
65
66# This macro adds an option THRIFT_COMPILER_${NAME}
67# that allows enabling or disabling certain languages
68macro(THRIFT_ADD_COMPILER name description initial)
69 string(TOUPPER "THRIFT_COMPILER_${name}" enabler)
dtmuller052abc32016-07-26 11:58:28 +020070 set(src "src/thrift/generate/t_${name}_generator.cc")
Pascal Bach6eb015a2014-04-17 16:19:07 +020071 option(${enabler} ${description} ${initial})
72 if(${enabler})
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +090073 list(APPEND thrift-compiler_SOURCES ${src})
Pascal Bach6eb015a2014-04-17 16:19:07 +020074 endif()
75endmacro()
76
77# The following compiler can be enabled or disabled
78THRIFT_ADD_COMPILER(c_glib "Enable compiler for C with Glib" ON)
79THRIFT_ADD_COMPILER(cpp "Enable compiler for C++" ON)
80THRIFT_ADD_COMPILER(java "Enable compiler for Java" ON)
81THRIFT_ADD_COMPILER(as3 "Enable compiler for ActionScript 3" ON)
Mark Erickson932c4702015-08-29 10:46:51 -050082THRIFT_ADD_COMPILER(dart "Enable compiler for Dart" ON)
Jens Geyerbd52f1a2014-07-28 01:25:30 +020083THRIFT_ADD_COMPILER(haxe "Enable compiler for Haxe" ON)
Pascal Bach6eb015a2014-04-17 16:19:07 +020084THRIFT_ADD_COMPILER(csharp "Enable compiler for C#" ON)
Volodymyr Gotrab587a122016-09-14 19:18:48 -050085THRIFT_ADD_COMPILER(netcore "Enable compiler for .NET Core" ON)
Pascal Bach6eb015a2014-04-17 16:19:07 +020086THRIFT_ADD_COMPILER(py "Enable compiler for Python 2.0" ON)
87THRIFT_ADD_COMPILER(rb "Enable compiler for Ruby" ON)
88THRIFT_ADD_COMPILER(perl "Enable compiler for Perl" ON)
89THRIFT_ADD_COMPILER(php "Enable compiler for PHP" ON)
90THRIFT_ADD_COMPILER(erl "Enable compiler for Erlang" ON)
91THRIFT_ADD_COMPILER(cocoa "Enable compiler for Cocoa Objective-C" ON)
Jens Geyer56e5b9b2015-10-09 22:01:55 +020092THRIFT_ADD_COMPILER(swift "Enable compiler for Cocoa Swift" ON)
Pascal Bach6eb015a2014-04-17 16:19:07 +020093THRIFT_ADD_COMPILER(st "Enable compiler for Smalltalk" ON)
94THRIFT_ADD_COMPILER(ocaml "Enable compiler for OCaml" ON)
95THRIFT_ADD_COMPILER(hs "Enable compiler for Haskell" ON)
96THRIFT_ADD_COMPILER(xsd "Enable compiler for XSD" ON)
97THRIFT_ADD_COMPILER(html "Enable compiler for HTML Documentation" ON)
98THRIFT_ADD_COMPILER(js "Enable compiler for JavaScript" ON)
Roger Meier1a74d9c2014-10-12 23:35:43 +020099THRIFT_ADD_COMPILER(json "Enable compiler for JSON" ON)
Pascal Bach6eb015a2014-04-17 16:19:07 +0200100THRIFT_ADD_COMPILER(javame "Enable compiler for Java ME" ON)
101THRIFT_ADD_COMPILER(delphi "Enable compiler for Delphi" ON)
102THRIFT_ADD_COMPILER(go "Enable compiler for Go" ON)
103THRIFT_ADD_COMPILER(d "Enable compiler for D" ON)
104THRIFT_ADD_COMPILER(lua "Enable compiler for Lua" ON)
Stig Bakken41e8cbf2016-02-12 16:33:12 +0100105THRIFT_ADD_COMPILER(gv "Enable compiler for GraphViz" ON)
106THRIFT_ADD_COMPILER(xml "Enable compiler for XML" ON)
Pascal Bach6eb015a2014-04-17 16:19:07 +0200107
108# Thrift is looking for include files in the src directory
109# we also add the current binary directory for generated files
110include_directories(${CMAKE_CURRENT_BINARY_DIR} src)
111
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +0900112if(NOT ${WITH_PLUGIN})
113 list(APPEND thrift-compiler_SOURCES ${compiler_core})
114endif()
115add_executable(thrift-compiler ${thrift-compiler_SOURCES})
116
117if(${WITH_PLUGIN})
118 add_executable(thrift-bootstrap ${compiler_core}
dtmuller052abc32016-07-26 11:58:28 +0200119 src/thrift/main.cc
120 src/thrift/audit/t_audit.cpp
121 src/thrift/generate/t_cpp_generator.cc
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +0900122 )
123 target_link_libraries(thrift-bootstrap libparse)
124
125 set(PLUGIN_GEN_SOURCES
dtmuller052abc32016-07-26 11:58:28 +0200126 ${CMAKE_CURRENT_BINARY_DIR}/thrift/plugin/plugin_types.h
127 ${CMAKE_CURRENT_BINARY_DIR}/thrift/plugin/plugin_types.cpp
128 ${CMAKE_CURRENT_BINARY_DIR}/thrift/plugin/plugin_constants.h
129 ${CMAKE_CURRENT_BINARY_DIR}/thrift/plugin/plugin_constants.cpp
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +0900130 )
131
dtmuller052abc32016-07-26 11:58:28 +0200132 file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/thrift/plugin)
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +0900133 add_custom_command(OUTPUT ${PLUGIN_GEN_SOURCES}
dtmuller052abc32016-07-26 11:58:28 +0200134 DEPENDS thrift-bootstrap src/thrift/plugin/plugin.thrift
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +0900135 COMMAND thrift-bootstrap -gen cpp
dtmuller052abc32016-07-26 11:58:28 +0200136 -out ${CMAKE_CURRENT_BINARY_DIR}/thrift/plugin
137 ${CMAKE_CURRENT_SOURCE_DIR}/src/thrift/plugin/plugin.thrift
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +0900138 )
139
140 include_directories(../../lib/cpp/src)
141
142 include(ThriftMacros)
143 ADD_LIBRARY_THRIFT(thriftc
144 ${compiler_core}
145 ${PLUGIN_GEN_SOURCES}
dtmuller052abc32016-07-26 11:58:28 +0200146 src/thrift/logging.cc
147 src/thrift/plugin/plugin_output.cc
148 src/thrift/plugin/plugin.cc
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +0900149 )
150 TARGET_INCLUDE_DIRECTORIES_THRIFT(thriftc PUBLIC ${Boost_INCLUDE_DIRS})
151 TARGET_LINK_LIBRARIES_THRIFT_AGAINST_THRIFT_LIBRARY(thriftc thrift PUBLIC)
152 target_compile_definitions(thrift-compiler PUBLIC THRIFT_ENABLE_PLUGIN)
153 LINK_AGAINST_THRIFT_LIBRARY(thrift-compiler thriftc)
154endif()
155
Pascal Bachd5f87e12014-12-12 15:59:17 +0100156set_target_properties(thrift-compiler PROPERTIES OUTPUT_NAME thrift)
Pascal Bach42be4e82014-04-23 18:19:06 +0200157
Pascal Bachd5f87e12014-12-12 15:59:17 +0100158target_link_libraries(thrift-compiler libparse)
Pascal Bach6eb015a2014-04-17 16:19:07 +0200159
Pascal Bachd5f87e12014-12-12 15:59:17 +0100160install(TARGETS thrift-compiler DESTINATION "${BIN_INSTALL_DIR}")
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +0900161
dtmuller052abc32016-07-26 11:58:28 +0200162if(${WITH_PLUGIN})
163 # Install the headers
164 install(FILES
165 "src/thrift/common.h"
166 "src/thrift/globals.h"
167 "src/thrift/logging.h"
168 "src/thrift/main.h"
169 "src/thrift/platform.h"
Nobuaki Sukegawad8c6a842016-10-02 14:21:55 +0900170 "${CMAKE_BINARY_DIR}/compiler/cpp/thrift/version.h"
dtmuller052abc32016-07-26 11:58:28 +0200171 DESTINATION "${INCLUDE_INSTALL_DIR}/thrift")
172 install(FILES
173 "src/thrift/audit/t_audit.h"
174 DESTINATION "${INCLUDE_INSTALL_DIR}/thrift/audit")
175 install(FILES
176 "src/thrift/generate/t_generator.h"
177 "src/thrift/generate/t_generator_registry.h"
178 "src/thrift/generate/t_html_generator.h"
179 "src/thrift/generate/t_oop_generator.h"
180 DESTINATION "${INCLUDE_INSTALL_DIR}/thrift/generate")
181 install(FILES
182 "src/thrift/parse/t_base_type.h"
183 "src/thrift/parse/t_const.h"
184 "src/thrift/parse/t_const_value.h"
185 "src/thrift/parse/t_container.h"
186 "src/thrift/parse/t_doc.h"
187 "src/thrift/parse/t_enum.h"
188 "src/thrift/parse/t_enum_value.h"
189 "src/thrift/parse/t_field.h"
190 "src/thrift/parse/t_function.h"
191 "src/thrift/parse/t_list.h"
192 "src/thrift/parse/t_map.h"
193 "src/thrift/parse/t_program.h"
194 "src/thrift/parse/t_scope.h"
195 "src/thrift/parse/t_service.h"
196 "src/thrift/parse/t_set.h"
197 "src/thrift/parse/t_struct.h"
198 "src/thrift/parse/t_typedef.h"
199 "src/thrift/parse/t_type.h"
200 DESTINATION "${INCLUDE_INSTALL_DIR}/thrift/parse")
201 install(FILES
202 "src/thrift/plugin/plugin.h"
203 "src/thrift/plugin/plugin_output.h"
204 "src/thrift/plugin/type_util.h"
205 DESTINATION "${INCLUDE_INSTALL_DIR}/thrift/plugin")
206if(MSVC)
207 install(FILES
208 "src/thrift/windows/config.h"
209 DESTINATION "${INCLUDE_INSTALL_DIR}/thrift/windows")
dtmuller052abc32016-07-26 11:58:28 +0200210endif()
211endif()
212
Nobuaki Sukegawa11da87e2016-09-10 14:02:19 +0900213if(BUILD_TESTING)
214 add_subdirectory(test)
215endif()