You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/cmake/preset/default.cmake
+28-2Lines changed: 28 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -14,10 +14,36 @@ endif()
14
14
15
15
# MARK: - Overridable Options
16
16
17
-
define_overridable_option(EXECUTORCH_ENABLE_LOGGING"Build with ET_LOG_ENABLED"BOOL${_is_build_type_debug})
18
-
define_overridable_option(EXECUTORCH_BUILD_COREML"Build the Core ML backend"BOOLOFF)
17
+
define_overridable_option(
18
+
EXECUTORCH_ENABLE_LOGGING
19
+
"Build with ET_LOG_ENABLED"
20
+
BOOL${_is_build_type_debug}
21
+
)
22
+
define_overridable_option(
23
+
EXECUTORCH_BUILD_COREML
24
+
"Build the Core ML backend"
25
+
BOOLOFF
26
+
)
19
27
define_overridable_option(
20
28
EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT
21
29
"Exir lets users set the alignment of tensor data embedded in the flatbuffer, and some users need an alignment larger than the default, which is typically 32."
22
30
STRING1024
23
31
)
32
+
define_overridable_option(
33
+
EXECUTORCH_PAL_DEFAULT
34
+
"Which PAL default implementation to use. Choices: posix, minimal"
0 commit comments