blob: 8ee250b1f2170b49c703c7f98798362663507b8c [file] [log] [blame]
Stella Laurenzo3b44a0a2022-04-18 19:57:57 -07001# Copyright 2022 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
Stella Laurenzo2eb68622023-11-10 17:04:46 -08007# Must include runtime plugins before processing the runtime sources so that
8# the static link list can be set.
9iree_include_cmake_plugin_dirs(
10 LOG_LABEL
11 runtime
12 BINARY_DIR
13 "${IREE_BINARY_DIR}/runtime/plugins"
14 PLUGIN_CMAKE_FILE
15 "iree_runtime_plugin.cmake"
16)
17
Stella Laurenzo9bde61b2022-04-21 15:37:14 -070018add_subdirectory(src)
19
Stella Laurenzo3b44a0a2022-04-18 19:57:57 -070020if(IREE_BUILD_PYTHON_BINDINGS)
Stella Laurenzob17a65e2022-05-09 21:15:19 -070021 add_subdirectory(bindings/python)
Stella Laurenzo3b44a0a2022-04-18 19:57:57 -070022endif()