sandboxed-api/sandboxed_api/tools/clang_generator/CMakeLists.txt
Christian Blichmann dbaf95c724 Move utility code into sandboxed_api/util
This change should make it less confusing where utility code comes from.
Having it in two places made sense when we were debating whether to publish
Sandbox2 separately, but not any longer.

Follow-up changes will move `sandbox2/util.h` and rename the remaining
`sandbox2/util` folder.

PiperOrigin-RevId: 351601640
Change-Id: I6256845261f610e590c25e2c59851cc51da2d778
2021-01-13 09:25:52 -08:00

86 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
sapi::fileops
sapi::status
${_sapi_generator_llvm_libs}
)
add_executable(sapi_generator_tool
generator_tool.cc
)
target_link_libraries(sapi_generator_tool PRIVATE
sapi::base
sapi::file_helpers
sapi::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::statusor
sapi::status_matchers
sapi::test_main
)
gtest_discover_tests_xcompile(sapi_generator_test)
endif()