Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 1 | # |
| 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 | # |
James E. King, III | 330b3f8 | 2017-01-23 08:52:04 -0500 | [diff] [blame] | 19 | cmake_minimum_required(VERSION 2.8.12) |
Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 20 | |
Nobuaki Sukegawa | d8c6a84 | 2016-10-02 14:21:55 +0900 | [diff] [blame] | 21 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/thrift/version.h.in ${CMAKE_CURRENT_BINARY_DIR}/thrift/version.h) |
James E. King, III | 7edc8fa | 2017-01-20 10:11:41 -0500 | [diff] [blame] | 22 | if(MSVC) |
| 23 | # The winflexbison generator outputs some macros that conflict with the Visual Studio 2010 copy of stdint.h |
| 24 | # This might be fixed in later versions of Visual Studio, but an easy solution is to include stdint.h first |
| 25 | if(HAVE_STDINT_H) |
James E. King, III | d7142b7 | 2017-09-01 13:00:36 -0700 | [diff] [blame] | 26 | add_definitions(-D__STDC_FORMAT_MACROS) |
James E. King, III | 7edc8fa | 2017-01-20 10:11:41 -0500 | [diff] [blame] | 27 | add_definitions(-D__STDC_LIMIT_MACROS) |
| 28 | add_definitions(/FI"stdint.h") |
| 29 | endif(HAVE_STDINT_H) |
| 30 | endif() |
Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 31 | |
| 32 | find_package(FLEX REQUIRED) |
| 33 | find_package(BISON REQUIRED) |
| 34 | |
James E. King, III | 330b3f8 | 2017-01-23 08:52:04 -0500 | [diff] [blame] | 35 | # create directory for thrifty and thriftl |
| 36 | file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/thrift/) |
| 37 | |
Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 38 | # Create flex and bison files and build the lib parse static library |
dtmuller | 052abc3 | 2016-07-26 11:58:28 +0200 | [diff] [blame] | 39 | BISON_TARGET(thrifty ${CMAKE_CURRENT_SOURCE_DIR}/src/thrift/thrifty.yy ${CMAKE_CURRENT_BINARY_DIR}/thrift/thrifty.cc) |
| 40 | FLEX_TARGET(thriftl ${CMAKE_CURRENT_SOURCE_DIR}/src/thrift/thriftl.ll ${CMAKE_CURRENT_BINARY_DIR}/thrift/thriftl.cc) |
Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 41 | ADD_FLEX_BISON_DEPENDENCY(thriftl thrifty) |
| 42 | |
James E. King, III | 330b3f8 | 2017-01-23 08:52:04 -0500 | [diff] [blame] | 43 | set(parse_SOURCES |
dtmuller | 052abc3 | 2016-07-26 11:58:28 +0200 | [diff] [blame] | 44 | ${CMAKE_CURRENT_BINARY_DIR}/thrift/thrifty.cc |
| 45 | ${CMAKE_CURRENT_BINARY_DIR}/thrift/thriftl.cc |
James E. King, III | 330b3f8 | 2017-01-23 08:52:04 -0500 | [diff] [blame] | 46 | ${CMAKE_CURRENT_BINARY_DIR}/thrift/thrifty.hh |
Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 47 | ) |
| 48 | |
James E. King, III | 330b3f8 | 2017-01-23 08:52:04 -0500 | [diff] [blame] | 49 | add_library(parse STATIC ${parse_SOURCES}) |
Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 50 | |
| 51 | # Create the thrift compiler |
Nobuaki Sukegawa | 11da87e | 2016-09-10 14:02:19 +0900 | [diff] [blame] | 52 | set(compiler_core |
dtmuller | 052abc3 | 2016-07-26 11:58:28 +0200 | [diff] [blame] | 53 | src/thrift/common.cc |
| 54 | src/thrift/generate/t_generator.cc |
| 55 | src/thrift/parse/t_typedef.cc |
| 56 | src/thrift/parse/parse.cc |
| 57 | ${CMAKE_CURRENT_BINARY_DIR}/thrift/version.h |
Nobuaki Sukegawa | 11da87e | 2016-09-10 14:02:19 +0900 | [diff] [blame] | 58 | ) |
| 59 | |
| 60 | set(thrift-compiler_SOURCES |
dtmuller | 052abc3 | 2016-07-26 11:58:28 +0200 | [diff] [blame] | 61 | src/thrift/main.cc |
| 62 | src/thrift/audit/t_audit.cpp |
Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 63 | ) |
| 64 | |
| 65 | # This macro adds an option THRIFT_COMPILER_${NAME} |
| 66 | # that allows enabling or disabling certain languages |
| 67 | macro(THRIFT_ADD_COMPILER name description initial) |
| 68 | string(TOUPPER "THRIFT_COMPILER_${name}" enabler) |
dtmuller | 052abc3 | 2016-07-26 11:58:28 +0200 | [diff] [blame] | 69 | set(src "src/thrift/generate/t_${name}_generator.cc") |
Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 70 | option(${enabler} ${description} ${initial}) |
| 71 | if(${enabler}) |
Nobuaki Sukegawa | 11da87e | 2016-09-10 14:02:19 +0900 | [diff] [blame] | 72 | list(APPEND thrift-compiler_SOURCES ${src}) |
Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 73 | endif() |
| 74 | endmacro() |
| 75 | |
| 76 | # The following compiler can be enabled or disabled |
| 77 | THRIFT_ADD_COMPILER(c_glib "Enable compiler for C with Glib" ON) |
| 78 | THRIFT_ADD_COMPILER(cpp "Enable compiler for C++" ON) |
| 79 | THRIFT_ADD_COMPILER(java "Enable compiler for Java" ON) |
| 80 | THRIFT_ADD_COMPILER(as3 "Enable compiler for ActionScript 3" ON) |
Mark Erickson | 932c470 | 2015-08-29 10:46:51 -0500 | [diff] [blame] | 81 | THRIFT_ADD_COMPILER(dart "Enable compiler for Dart" ON) |
Jens Geyer | bd52f1a | 2014-07-28 01:25:30 +0200 | [diff] [blame] | 82 | THRIFT_ADD_COMPILER(haxe "Enable compiler for Haxe" ON) |
Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 83 | THRIFT_ADD_COMPILER(csharp "Enable compiler for C#" ON) |
Volodymyr Gotra | b587a12 | 2016-09-14 19:18:48 -0500 | [diff] [blame] | 84 | THRIFT_ADD_COMPILER(netcore "Enable compiler for .NET Core" ON) |
Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 85 | THRIFT_ADD_COMPILER(py "Enable compiler for Python 2.0" ON) |
| 86 | THRIFT_ADD_COMPILER(rb "Enable compiler for Ruby" ON) |
| 87 | THRIFT_ADD_COMPILER(perl "Enable compiler for Perl" ON) |
| 88 | THRIFT_ADD_COMPILER(php "Enable compiler for PHP" ON) |
| 89 | THRIFT_ADD_COMPILER(erl "Enable compiler for Erlang" ON) |
| 90 | THRIFT_ADD_COMPILER(cocoa "Enable compiler for Cocoa Objective-C" ON) |
Jens Geyer | 56e5b9b | 2015-10-09 22:01:55 +0200 | [diff] [blame] | 91 | THRIFT_ADD_COMPILER(swift "Enable compiler for Cocoa Swift" ON) |
Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 92 | THRIFT_ADD_COMPILER(st "Enable compiler for Smalltalk" ON) |
| 93 | THRIFT_ADD_COMPILER(ocaml "Enable compiler for OCaml" ON) |
| 94 | THRIFT_ADD_COMPILER(hs "Enable compiler for Haskell" ON) |
| 95 | THRIFT_ADD_COMPILER(xsd "Enable compiler for XSD" ON) |
| 96 | THRIFT_ADD_COMPILER(html "Enable compiler for HTML Documentation" ON) |
| 97 | THRIFT_ADD_COMPILER(js "Enable compiler for JavaScript" ON) |
Roger Meier | 1a74d9c | 2014-10-12 23:35:43 +0200 | [diff] [blame] | 98 | THRIFT_ADD_COMPILER(json "Enable compiler for JSON" ON) |
Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 99 | THRIFT_ADD_COMPILER(javame "Enable compiler for Java ME" ON) |
| 100 | THRIFT_ADD_COMPILER(delphi "Enable compiler for Delphi" ON) |
| 101 | THRIFT_ADD_COMPILER(go "Enable compiler for Go" ON) |
| 102 | THRIFT_ADD_COMPILER(d "Enable compiler for D" ON) |
| 103 | THRIFT_ADD_COMPILER(lua "Enable compiler for Lua" ON) |
Stig Bakken | 41e8cbf | 2016-02-12 16:33:12 +0100 | [diff] [blame] | 104 | THRIFT_ADD_COMPILER(gv "Enable compiler for GraphViz" ON) |
Allen George | 8b96bfb | 2016-11-02 08:01:08 -0400 | [diff] [blame] | 105 | THRIFT_ADD_COMPILER(rs "Enable compiler for Rust" ON) |
Stig Bakken | 41e8cbf | 2016-02-12 16:33:12 +0100 | [diff] [blame] | 106 | THRIFT_ADD_COMPILER(xml "Enable compiler for XML" ON) |
Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 107 | |
| 108 | # Thrift is looking for include files in the src directory |
| 109 | # we also add the current binary directory for generated files |
| 110 | include_directories(${CMAKE_CURRENT_BINARY_DIR} src) |
| 111 | |
Nobuaki Sukegawa | 11da87e | 2016-09-10 14:02:19 +0900 | [diff] [blame] | 112 | if(NOT ${WITH_PLUGIN}) |
| 113 | list(APPEND thrift-compiler_SOURCES ${compiler_core}) |
| 114 | endif() |
James E. King, III | 330b3f8 | 2017-01-23 08:52:04 -0500 | [diff] [blame] | 115 | |
Nobuaki Sukegawa | 11da87e | 2016-09-10 14:02:19 +0900 | [diff] [blame] | 116 | add_executable(thrift-compiler ${thrift-compiler_SOURCES}) |
| 117 | |
| 118 | if(${WITH_PLUGIN}) |
| 119 | add_executable(thrift-bootstrap ${compiler_core} |
dtmuller | 052abc3 | 2016-07-26 11:58:28 +0200 | [diff] [blame] | 120 | src/thrift/main.cc |
| 121 | src/thrift/audit/t_audit.cpp |
| 122 | src/thrift/generate/t_cpp_generator.cc |
Nobuaki Sukegawa | 11da87e | 2016-09-10 14:02:19 +0900 | [diff] [blame] | 123 | ) |
James E. King, III | 330b3f8 | 2017-01-23 08:52:04 -0500 | [diff] [blame] | 124 | target_link_libraries(thrift-bootstrap parse) |
Nobuaki Sukegawa | 11da87e | 2016-09-10 14:02:19 +0900 | [diff] [blame] | 125 | |
| 126 | set(PLUGIN_GEN_SOURCES |
dtmuller | 052abc3 | 2016-07-26 11:58:28 +0200 | [diff] [blame] | 127 | ${CMAKE_CURRENT_BINARY_DIR}/thrift/plugin/plugin_types.h |
| 128 | ${CMAKE_CURRENT_BINARY_DIR}/thrift/plugin/plugin_types.cpp |
| 129 | ${CMAKE_CURRENT_BINARY_DIR}/thrift/plugin/plugin_constants.h |
| 130 | ${CMAKE_CURRENT_BINARY_DIR}/thrift/plugin/plugin_constants.cpp |
Nobuaki Sukegawa | 11da87e | 2016-09-10 14:02:19 +0900 | [diff] [blame] | 131 | ) |
| 132 | |
dtmuller | 052abc3 | 2016-07-26 11:58:28 +0200 | [diff] [blame] | 133 | file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/thrift/plugin) |
Nobuaki Sukegawa | 11da87e | 2016-09-10 14:02:19 +0900 | [diff] [blame] | 134 | add_custom_command(OUTPUT ${PLUGIN_GEN_SOURCES} |
dtmuller | 052abc3 | 2016-07-26 11:58:28 +0200 | [diff] [blame] | 135 | DEPENDS thrift-bootstrap src/thrift/plugin/plugin.thrift |
Nobuaki Sukegawa | 11da87e | 2016-09-10 14:02:19 +0900 | [diff] [blame] | 136 | COMMAND thrift-bootstrap -gen cpp |
dtmuller | 052abc3 | 2016-07-26 11:58:28 +0200 | [diff] [blame] | 137 | -out ${CMAKE_CURRENT_BINARY_DIR}/thrift/plugin |
| 138 | ${CMAKE_CURRENT_SOURCE_DIR}/src/thrift/plugin/plugin.thrift |
Nobuaki Sukegawa | 11da87e | 2016-09-10 14:02:19 +0900 | [diff] [blame] | 139 | ) |
| 140 | |
| 141 | include_directories(../../lib/cpp/src) |
| 142 | |
| 143 | include(ThriftMacros) |
| 144 | ADD_LIBRARY_THRIFT(thriftc |
| 145 | ${compiler_core} |
| 146 | ${PLUGIN_GEN_SOURCES} |
dtmuller | 052abc3 | 2016-07-26 11:58:28 +0200 | [diff] [blame] | 147 | src/thrift/logging.cc |
| 148 | src/thrift/plugin/plugin_output.cc |
| 149 | src/thrift/plugin/plugin.cc |
Nobuaki Sukegawa | 11da87e | 2016-09-10 14:02:19 +0900 | [diff] [blame] | 150 | ) |
| 151 | TARGET_INCLUDE_DIRECTORIES_THRIFT(thriftc PUBLIC ${Boost_INCLUDE_DIRS}) |
| 152 | TARGET_LINK_LIBRARIES_THRIFT_AGAINST_THRIFT_LIBRARY(thriftc thrift PUBLIC) |
| 153 | target_compile_definitions(thrift-compiler PUBLIC THRIFT_ENABLE_PLUGIN) |
| 154 | LINK_AGAINST_THRIFT_LIBRARY(thrift-compiler thriftc) |
| 155 | endif() |
| 156 | |
James E. King, III | 330b3f8 | 2017-01-23 08:52:04 -0500 | [diff] [blame] | 157 | set_target_properties(thrift-compiler PROPERTIES RUNTIME_OUTPUT_DIRECTORY bin/) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 158 | set_target_properties(thrift-compiler PROPERTIES OUTPUT_NAME thrift) |
Pascal Bach | 42be4e8 | 2014-04-23 18:19:06 +0200 | [diff] [blame] | 159 | |
James E. King, III | 330b3f8 | 2017-01-23 08:52:04 -0500 | [diff] [blame] | 160 | target_link_libraries(thrift-compiler parse) |
Pascal Bach | 6eb015a | 2014-04-17 16:19:07 +0200 | [diff] [blame] | 161 | |
James E. King, III | 330b3f8 | 2017-01-23 08:52:04 -0500 | [diff] [blame] | 162 | install(TARGETS thrift-compiler DESTINATION bin) |
Nobuaki Sukegawa | 11da87e | 2016-09-10 14:02:19 +0900 | [diff] [blame] | 163 | |
dtmuller | 052abc3 | 2016-07-26 11:58:28 +0200 | [diff] [blame] | 164 | if(${WITH_PLUGIN}) |
| 165 | # Install the headers |
| 166 | install(FILES |
| 167 | "src/thrift/common.h" |
| 168 | "src/thrift/globals.h" |
| 169 | "src/thrift/logging.h" |
| 170 | "src/thrift/main.h" |
| 171 | "src/thrift/platform.h" |
Nobuaki Sukegawa | d8c6a84 | 2016-10-02 14:21:55 +0900 | [diff] [blame] | 172 | "${CMAKE_BINARY_DIR}/compiler/cpp/thrift/version.h" |
dtmuller | 052abc3 | 2016-07-26 11:58:28 +0200 | [diff] [blame] | 173 | DESTINATION "${INCLUDE_INSTALL_DIR}/thrift") |
| 174 | install(FILES |
| 175 | "src/thrift/audit/t_audit.h" |
| 176 | DESTINATION "${INCLUDE_INSTALL_DIR}/thrift/audit") |
| 177 | install(FILES |
| 178 | "src/thrift/generate/t_generator.h" |
| 179 | "src/thrift/generate/t_generator_registry.h" |
| 180 | "src/thrift/generate/t_html_generator.h" |
| 181 | "src/thrift/generate/t_oop_generator.h" |
| 182 | DESTINATION "${INCLUDE_INSTALL_DIR}/thrift/generate") |
| 183 | install(FILES |
| 184 | "src/thrift/parse/t_base_type.h" |
| 185 | "src/thrift/parse/t_const.h" |
| 186 | "src/thrift/parse/t_const_value.h" |
| 187 | "src/thrift/parse/t_container.h" |
| 188 | "src/thrift/parse/t_doc.h" |
| 189 | "src/thrift/parse/t_enum.h" |
| 190 | "src/thrift/parse/t_enum_value.h" |
| 191 | "src/thrift/parse/t_field.h" |
| 192 | "src/thrift/parse/t_function.h" |
| 193 | "src/thrift/parse/t_list.h" |
| 194 | "src/thrift/parse/t_map.h" |
| 195 | "src/thrift/parse/t_program.h" |
| 196 | "src/thrift/parse/t_scope.h" |
| 197 | "src/thrift/parse/t_service.h" |
| 198 | "src/thrift/parse/t_set.h" |
| 199 | "src/thrift/parse/t_struct.h" |
| 200 | "src/thrift/parse/t_typedef.h" |
| 201 | "src/thrift/parse/t_type.h" |
| 202 | DESTINATION "${INCLUDE_INSTALL_DIR}/thrift/parse") |
| 203 | install(FILES |
| 204 | "src/thrift/plugin/plugin.h" |
| 205 | "src/thrift/plugin/plugin_output.h" |
| 206 | "src/thrift/plugin/type_util.h" |
| 207 | DESTINATION "${INCLUDE_INSTALL_DIR}/thrift/plugin") |
| 208 | if(MSVC) |
| 209 | install(FILES |
| 210 | "src/thrift/windows/config.h" |
| 211 | DESTINATION "${INCLUDE_INSTALL_DIR}/thrift/windows") |
dtmuller | 052abc3 | 2016-07-26 11:58:28 +0200 | [diff] [blame] | 212 | endif() |
| 213 | endif() |
| 214 | |
Nobuaki Sukegawa | 11da87e | 2016-09-10 14:02:19 +0900 | [diff] [blame] | 215 | if(BUILD_TESTING) |
| 216 | add_subdirectory(test) |
| 217 | endif() |