blob: d01e12b005339cf1caaef208c690c6bf949a9f2b [file] [log] [blame]
Ben Vanik2d1808b2020-07-17 19:02:16 -07001# Copyright 2020 Google LLC
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# https://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15include(CMakeParseArguments)
16
17# flatbuffer_c_library()
18#
19# CMake function to invoke the flatcc compiler.
20#
21# Parameters:
22# NAME: name of target (see Note)
23# SRCS: List of source files for the library
24# DEPS: List of other libraries to be linked in to the binary targets
25# COPTS: List of private compile options
26# DEFINES: List of public defines
27# LINKOPTS: List of link options
28# FLATCC_ARGS: List of flattbuffers arguments. Default:
29# "--common"
30# "--reader"
31# PUBLIC: Add this so that this library will be exported under iree::
32# Also in IDE, target will appear in IREE folder while non PUBLIC will be in IREE/internal.
33# TESTONLY: When added, this target will only be built if user passes -DIREE_BUILD_TESTS=ON to CMake.
34#
35# Note:
36# By default, flatbuffer_c_library will always create a library named ${NAME},
37# and alias target iree::${NAME}. The iree:: form should always be used.
38# This is to reduce namespace pollution.
39#
40# flatbuffer_c_library(
41# NAME
42# base_schema
43# SRCS
44# "a.fbs"
45# )
46# flatbuffer_c_library(
47# NAME
48# other_schemas
49# SRCS
50# "b.fbs"
51# DEPS
52# iree::schemas::base_schema
53# PUBLIC
54# )
55#
56# iree_cc_binary(
57# NAME
58# main_lib
59# ...
60# DEPS
61# iree::schemas::other_schemas
62# )
63function(flatbuffer_c_library)
64 cmake_parse_arguments(_RULE
65 "PUBLIC;TESTONLY"
66 "NAME"
67 "SRCS;COPTS;DEFINES;LINKOPTS;DEPS;FLATCC_ARGS"
68 ${ARGN}
69 )
70
71 if(_RULE_TESTONLY AND NOT IREE_BUILD_TESTS)
72 return()
73 endif()
74
75 # Prefix the library with the package name, so we get: iree_package_name
76 iree_package_name(_PACKAGE_NAME)
77 set(_NAME "${_PACKAGE_NAME}_${_RULE_NAME}")
78
79 if(NOT DEFINED _RULE_FLATCC_ARGS)
80 set(_RULE_FLATCC_ARGS
81 "--common"
82 "--reader"
83 )
84 else()
85 set(_RULE_FLATCC_ARGS ${_RULE_FLATCC_ARGS})
86 endif()
87
88 set(_OUTS "")
89 foreach(_SRC ${_RULE_SRCS})
90 get_filename_component(_SRC_FILENAME ${_SRC} NAME_WE)
91 foreach(_ARG ${_RULE_FLATCC_ARGS})
92 if(_ARG STREQUAL "--reader")
93 list(APPEND _OUTS "${_SRC_FILENAME}_reader.h")
94 elseif(_ARG STREQUAL "--builder")
95 list(APPEND _OUTS "${_SRC_FILENAME}_builder.h")
96 elseif(_ARG STREQUAL "--verifier")
97 list(APPEND _OUTS "${_SRC_FILENAME}_verifier.h")
98 endif()
99 endforeach()
100 endforeach()
101 list(TRANSFORM _OUTS PREPEND "${CMAKE_CURRENT_BINARY_DIR}/")
102
Ben Vanikeb53de32020-07-17 19:05:27 -0700103 iree_get_executable_path(_FLATCC_BIN flatcc_cli)
Ben Vanik2d1808b2020-07-17 19:02:16 -0700104 add_custom_command(
105 OUTPUT
106 ${_OUTS}
107 COMMAND
108 "${_FLATCC_BIN}"
109 -o "${CMAKE_CURRENT_BINARY_DIR}"
110 -I "${IREE_ROOT_DIR}"
111 ${_RULE_FLATCC_ARGS}
112 "${_RULE_SRCS}"
113 WORKING_DIRECTORY
114 "${CMAKE_CURRENT_SOURCE_DIR}"
115 MAIN_DEPENDENCY
116 ${_RULE_SRCS}
117 DEPENDS
Ben Vanik14257372020-07-21 08:05:18 -0700118 iree_host_flatcc_cli
Ben Vanik2d1808b2020-07-17 19:02:16 -0700119 ${_RULE_SRCS}
120 COMMAND_EXPAND_LISTS
121 )
122
123 set(_GEN_TARGET "${_NAME}_gen")
124 add_custom_target(
125 ${_GEN_TARGET}
126 DEPENDS
127 ${_OUTS}
128 ${_RULE_DEPS}
129 )
130
131 add_library(${_NAME} INTERFACE)
132 add_dependencies(${_NAME} ${_GEN_TARGET})
Ben Vanikafd7abe2020-10-07 09:01:53 -0700133 target_include_directories(${_NAME} SYSTEM
Ben Vanik2d1808b2020-07-17 19:02:16 -0700134 INTERFACE
135 "$<BUILD_INTERFACE:${IREE_COMMON_INCLUDE_DIRS}>"
136 ${CMAKE_CURRENT_BINARY_DIR}
137 )
138 target_link_libraries(${_NAME}
139 INTERFACE
140 flatcc::runtime
Ben Vanik2d1808b2020-07-17 19:02:16 -0700141 ${IREE_DEFAULT_LINKOPTS}
Ben Vanikbf4069e2020-11-14 11:23:01 -0800142 ${_RULE_LINKOPTS}
Ben Vanik2d1808b2020-07-17 19:02:16 -0700143 )
144 target_compile_definitions(${_NAME}
145 INTERFACE
146 ${_RULE_DEFINES}
147 )
148 target_compile_options(${_NAME}
149 INTERFACE
Ben Vanik94b11c32020-11-14 17:07:56 -0800150 "-I${IREE_ROOT_DIR}/third_party/flatcc/include/"
Ben Vanik2d1808b2020-07-17 19:02:16 -0700151 "-I${IREE_ROOT_DIR}/third_party/flatcc/include/flatcc/reflection/"
152 )
153
154 # Alias the iree_package_name library to iree::package::name.
155 # This lets us more clearly map to Bazel and makes it possible to
156 # disambiguate the underscores in paths vs. the separators.
157 iree_package_ns(_PACKAGE_NS)
158 add_library(${_PACKAGE_NS}::${_RULE_NAME} ALIAS ${_NAME})
159endfunction()