blob: 119b08692dd86044c52804c238551da1bc0b28d0 [file] [log] [blame]
Alexander Dorokhine49410d12020-03-02 16:19:49 -08001# Copyright 2020 The Android Open Source Project
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# http://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
15cmake_minimum_required(VERSION 3.10.2)
16
Alexander Dorokhine695a85e2020-06-03 12:35:10 -070017set(
18 Protobuf_PREBUILTS_DIR
19 "${CMAKE_CURRENT_SOURCE_DIR}/../../prebuilts/protobuf")
Alexander Dorokhine49410d12020-03-02 16:19:49 -080020set(Protobuf_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../protobuf")
Alexander Dorokhine6c894602020-03-27 15:14:09 -070021set(Protobuf_TARGET_BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/protobuf-target")
Alexander Dorokhine0647e782020-06-09 16:11:53 -070022set(Icing_PROTO_GEN_DIR "${CMAKE_CURRENT_BINARY_DIR}/icing-protobuf-gen")
Alexander Dorokhine6c894602020-03-27 15:14:09 -070023
Alexander Dorokhine695a85e2020-06-03 12:35:10 -070024## Configure libprotobuf ##
25# Find the right protoc to compile our proto files
26if(${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Darwin")
27 set(Protobuf_PROTOC_PATH "${Protobuf_PREBUILTS_DIR}/darwin-x86_64/protoc")
28elseif(${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Linux")
29 set(Protobuf_PROTOC_PATH "${Protobuf_PREBUILTS_DIR}/linux-x86_64/protoc")
30elseif(${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Windows")
31 set(Protobuf_PROTOC_PATH "${Protobuf_PREBUILTS_DIR}/windows-x86/protoc.exe")
32else()
33 message(
34 FATAL_ERROR
35 "No protoc prebuilt found for host OS ${CMAKE_HOST_SYSTEM_NAME}")
36endif()
37message(STATUS "Using prebuilt protoc at: ${Protobuf_PROTOC_PATH}")
Alexander Dorokhine49410d12020-03-02 16:19:49 -080038
Alexander Dorokhine695a85e2020-06-03 12:35:10 -070039# Compile libprotobuf
40set(protobuf_BUILD_TESTS OFF CACHE BOOL "")
41add_subdirectory("${Protobuf_SOURCE_DIR}/cmake" ${Protobuf_TARGET_BINARY_DIR})
42
43# Compile libandroidicu
44set(ICU_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../icu/libandroidicu")
45set(ICU_TARGET_BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/icu-target")
46add_subdirectory(${ICU_SOURCE_DIR} ${ICU_TARGET_BINARY_DIR})
Alexander Dorokhine49410d12020-03-02 16:19:49 -080047
Alexander Dorokhine875dc9f2020-04-26 21:00:11 -070048# Glob Icing proto sources. Results look like this: icing/proto/document.proto
Alexander Dorokhine49410d12020-03-02 16:19:49 -080049file(
50 GLOB_RECURSE
51 Icing_PROTO_FILES
Alexander Dorokhine0647e782020-06-09 16:11:53 -070052 RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}/proto"
53 "*.proto")
Alexander Dorokhine49410d12020-03-02 16:19:49 -080054message(STATUS "Icing_PROTO_FILES=${Icing_PROTO_FILES}")
55
56# Run protoc on Icing_PROTO_FILES to generate pb.cc and pb.h files
Alexander Dorokhine49410d12020-03-02 16:19:49 -080057file(MAKE_DIRECTORY ${Icing_PROTO_GEN_DIR})
58foreach(FILE ${Icing_PROTO_FILES})
59 # Find the name of the proto file without the .proto extension
60 string(REGEX REPLACE "\.proto$" "" FILE_NOEXT ${FILE})
Alexander Dorokhine875dc9f2020-04-26 21:00:11 -070061 list(APPEND Icing_PROTO_SOURCES
62 "${Icing_PROTO_GEN_DIR}/${FILE_NOEXT}.pb.cc"
63 "${Icing_PROTO_GEN_DIR}/${FILE_NOEXT}.pb.h")
64 add_custom_command(
65 OUTPUT "${Icing_PROTO_GEN_DIR}/${FILE_NOEXT}.pb.cc"
66 "${Icing_PROTO_GEN_DIR}/${FILE_NOEXT}.pb.h"
Alexander Dorokhine695a85e2020-06-03 12:35:10 -070067 COMMAND ${Protobuf_PROTOC_PATH}
Alexander Dorokhine0647e782020-06-09 16:11:53 -070068 --proto_path "${CMAKE_CURRENT_SOURCE_DIR}/proto"
Alexander Dorokhine875dc9f2020-04-26 21:00:11 -070069 --cpp_out ${Icing_PROTO_GEN_DIR}
70 ${FILE}
Alexander Dorokhine49410d12020-03-02 16:19:49 -080071 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
Alexander Dorokhine695a85e2020-06-03 12:35:10 -070072 DEPENDS ${Protobuf_PROTOC_PATH}
Alexander Dorokhine49410d12020-03-02 16:19:49 -080073 )
Alexander Dorokhine49410d12020-03-02 16:19:49 -080074endforeach()
Alexander Dorokhine49410d12020-03-02 16:19:49 -080075message(STATUS "Icing_PROTO_SOURCES=${Icing_PROTO_SOURCES}")
76
77# Glob Icing C++ sources
78# TODO: When supporting cmake v3.12 or higher, use CONFIGURE_DEPENDS in the glob
79# below so that cmake knows when to re-generate the makefiles.
80file(
81 # List files recursively
82 GLOB_RECURSE
83 # Store into a variable of this name
84 Icing_CC_SOURCES
85 # Return paths that are relative to the project root
86 RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
87 # Glob expressions
88 icing/*.cc icing/*.h
89)
90# Exclude the same types of files as Android.bp. See the comments there.
Tim Barron770e5992020-06-05 16:19:07 -070091list(FILTER Icing_CC_SOURCES EXCLUDE REGEX "^icing/.*[^a-zA-Z0-9]test[^a-zA-Z0-9].*$")
Alexander Dorokhine49410d12020-03-02 16:19:49 -080092list(FILTER Icing_CC_SOURCES EXCLUDE REGEX "^icing/.*_benchmark\.cc$")
Tim Barron770e5992020-06-05 16:19:07 -070093list(FILTER Icing_CC_SOURCES EXCLUDE REGEX "^icing/helpers/icu/.*$")
Alexander Dorokhine49410d12020-03-02 16:19:49 -080094list(FILTER Icing_CC_SOURCES EXCLUDE REGEX "^icing/testing/.*$")
Tim Barron770e5992020-06-05 16:19:07 -070095list(FILTER Icing_CC_SOURCES EXCLUDE REGEX "^icing/tokenization/icu/.*$")
96list(FILTER Icing_CC_SOURCES EXCLUDE REGEX "^icing/tokenization/simple/.*$")
Alexander Dorokhine49410d12020-03-02 16:19:49 -080097list(FILTER Icing_CC_SOURCES EXCLUDE REGEX "^icing/tools/.*$")
Tim Barron770e5992020-06-05 16:19:07 -070098list(FILTER Icing_CC_SOURCES EXCLUDE REGEX "^icing/transform/icu/.*$")
99list(FILTER Icing_CC_SOURCES EXCLUDE REGEX "^icing/transform/simple/.*$")
Alexander Dorokhine49410d12020-03-02 16:19:49 -0800100message(STATUS "Icing_CC_SOURCES=${Icing_CC_SOURCES}")
101
102add_library(
103 # .so name
104 icing
105
106 # Shared or static
107 SHARED
108
109 # Provides a relative path to your source file(s).
110 ${Icing_CC_SOURCES}
111 ${Icing_PROTO_SOURCES}
112)
113target_include_directories(icing PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
114target_include_directories(icing PRIVATE ${Icing_PROTO_GEN_DIR})
115target_include_directories(icing PRIVATE "${Protobuf_SOURCE_DIR}/src")
Tim Barronb47184c2020-05-13 22:31:00 +0000116target_include_directories(icing PRIVATE "${ICU_SOURCE_DIR}/include")
117target_link_libraries(icing protobuf::libprotobuf libandroidicu log)