sandboxed-api/contrib/jsonnet/examples/CMakeLists.txt

39 lines
1.1 KiB
CMake
Raw Normal View History

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
#
# 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
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
)
target_link_libraries(jsonnet_${target}_sandboxed PRIVATE
2020-09-10 21:27:22 +08:00
libjsonnet
sapi_contrib::jsonnet_helper
sapi_contrib::jsonnet
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
2020-09-25 19:20:50 +08:00
libjsonnet
sapi_contrib::jsonnet_helper
sapi_contrib::jsonnet
2020-09-25 19:20:50 +08:00
sapi::sapi
)