Scott Todd | ffda498 | 2021-06-07 11:50:55 -0700 | [diff] [blame] | 1 | # Copyright 2021 The IREE Authors |
| 2 | # |
| 3 | # Licensed under the Apache License v2.0 with LLVM Exceptions. |
| 4 | # See https://llvm.org/LICENSE.txt for license information. |
| 5 | # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | |
Scott Todd | ffda498 | 2021-06-07 11:50:55 -0700 | [diff] [blame] | 7 | set(_NAME "iree_samples_variables_and_state") |
| 8 | add_executable(${_NAME} "") |
| 9 | target_sources(${_NAME} |
| 10 | PRIVATE |
| 11 | main.c |
| 12 | ) |
| 13 | |
| 14 | set_target_properties(${_NAME} PROPERTIES OUTPUT_NAME "variables-and-state") |
| 15 | |
| 16 | target_link_libraries(${_NAME} |
| 17 | iree_runtime_runtime |
| 18 | ) |