forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
54 lines (49 loc) · 1.29 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
################################################################################
# Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from #
# runtime/src/iree/runtime/BUILD.bazel #
# #
# Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary #
# CMake-only content. #
# #
# To disable autogeneration for this file entirely, delete this header. #
################################################################################
iree_add_all_subdirs()
iree_cc_library(
NAME
runtime
HDRS
"api.h"
DEPS
::impl
iree::base
PUBLIC
)
iree_cc_library(
NAME
impl
HDRS
"call.h"
"instance.h"
"session.h"
SRCS
"call.c"
"instance.c"
"session.c"
DEPS
iree::base
iree::base::internal
iree::base::internal::file_io
iree::hal
iree::hal::drivers
iree::modules::hal
iree::vm
iree::vm::bytecode::module
PUBLIC
)
### BAZEL_TO_CMAKE_PRESERVES_ALL_CONTENT_BELOW_THIS_LINE ###
iree_cc_unified_library(
NAME
unified
ROOT
::impl
)