blob: e6244af471eae0ac709f4029b9ff05e3780ceb3d [file] [log] [blame]
Scott Toddffda4982021-06-07 11:50:55 -07001# 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 Toddffda4982021-06-07 11:50:55 -07007set(_NAME "iree_samples_variables_and_state")
8add_executable(${_NAME} "")
9target_sources(${_NAME}
10 PRIVATE
11 main.c
12)
13
14set_target_properties(${_NAME} PROPERTIES OUTPUT_NAME "variables-and-state")
15
16target_link_libraries(${_NAME}
17 iree_runtime_runtime
18)