2020-09-08 19:03:02 +08:00
|
|
|
# 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
|
|
|
|
#
|
2022-01-28 17:38:27 +08:00
|
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
2020-09-08 19:03:02 +08:00
|
|
|
#
|
|
|
|
# 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.
|
2020-09-08 18:37:17 +08:00
|
|
|
|
2022-01-27 17:34:16 +08:00
|
|
|
foreach(target IN ITEMS base multiple_files yaml_stream formatter)
|
|
|
|
add_executable(jsonnet_${target}_sandboxed
|
|
|
|
jsonnet_${target}_example.cc
|
2020-09-10 21:27:22 +08:00
|
|
|
)
|
2022-01-27 17:34:16 +08:00
|
|
|
target_link_libraries(jsonnet_${target}_sandboxed PRIVATE
|
2022-10-20 21:48:06 +08:00
|
|
|
absl::check
|
|
|
|
absl::flags
|
|
|
|
absl::flags_parse
|
|
|
|
absl::log
|
|
|
|
absl::log_globals
|
|
|
|
absl::log_initialize
|
2020-09-10 21:27:22 +08:00
|
|
|
libjsonnet
|
2022-02-02 17:09:26 +08:00
|
|
|
sapi_contrib::jsonnet_helper
|
|
|
|
sapi_contrib::jsonnet
|
2021-01-14 01:25:25 +08:00
|
|
|
sapi::file_base
|
|
|
|
sapi::fileops
|
2020-09-10 21:27:22 +08:00
|
|
|
sapi::sapi
|
|
|
|
)
|
|
|
|
endforeach()
|
2020-09-15 17:40:43 +08:00
|
|
|
|
2020-09-17 23:59:03 +08:00
|
|
|
add_executable(jsonnet_base_transacted
|
2020-09-15 17:40:43 +08:00
|
|
|
jsonnet_base_transaction.cc
|
|
|
|
)
|
2020-09-17 23:59:03 +08:00
|
|
|
target_link_libraries(jsonnet_base_transacted PRIVATE
|
2022-10-20 21:48:06 +08:00
|
|
|
absl::check
|
|
|
|
absl::flags
|
|
|
|
absl::flags_parse
|
|
|
|
absl::log
|
|
|
|
absl::log_globals
|
|
|
|
absl::log_initialize
|
2020-09-25 19:20:50 +08:00
|
|
|
libjsonnet
|
2022-02-02 17:09:26 +08:00
|
|
|
sapi_contrib::jsonnet_helper
|
|
|
|
sapi_contrib::jsonnet
|
2020-09-25 19:20:50 +08:00
|
|
|
sapi::sapi
|
|
|
|
)
|