sandboxed-api/sandboxed_api/tools/clang_generator/CMakeLists.txt
Christian Blichmann 35f9268e23 Restructure the Clang based header generator
- Support multiple input files
- Better testability
- Support for the `--sapi_isystem` argument, same as the Python generator

PiperOrigin-RevId: 333686891
Change-Id: I3e618165c1bd58bb755e1193617fb0737c29ee77
2020-09-25 01:14:18 -07:00

85 lines
2.0 KiB
CMake

# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Minimum supported: LLVM 7.0.1
find_package(LLVM REQUIRED)
find_package(Clang REQUIRED)
if(LLVM_VERSION VERSION_LESS "7.0.1")
message(FATAL_ERROR "SAPI header generator needs LLVM 7.0.1 or newer")
endif()
add_library(sapi_generator
diagnostics.cc
diagnostics.h
emitter.h
emitter.cc
generator.h
generator.cc
types.h
types.cc
)
add_library(sapi::generator ALIAS sapi_generator)
target_compile_definitions(sapi_generator PUBLIC
${LLVM_DEFINITIONS}
)
target_include_directories(sapi_generator PUBLIC
${LLVM_INCLUDE_DIRS}
)
llvm_map_components_to_libnames(_sapi_generator_llvm_libs
core
)
target_link_libraries(sapi_generator PUBLIC
sapi::base
absl::flat_hash_set
absl::memory
absl::random_random
absl::status
absl::statusor
absl::strings
clangFormat
clangFrontendTool
clangTooling
sandbox2::fileops
sapi::status
${_sapi_generator_llvm_libs}
)
add_executable(sapi_generator_tool
generator_tool.cc
)
target_link_libraries(sapi_generator_tool PRIVATE
sapi::base
sandbox2::file_helpers
sandbox2::fileops
sapi::generator
)
if(SAPI_ENABLE_TESTS)
add_executable(sapi_generator_test
frontend_action_test_util.cc
frontend_action_test_util.h
emitter_test.cc
)
target_link_libraries(sapi_generator_test PRIVATE
absl::memory
benchmark
sapi::sapi
sapi::generator
sapi::status
sapi::status_matchers
sapi::test_main
)
gtest_discover_tests(sapi_generator_test)
endif()