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