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
# PICO_BAZEL_CONFIG: PICO_TINYUSB_LIB, [Bazel only] The library that provides TinyUSB, default=@tinyusb//:tinyusb, group=build
190
196
label_flag(
191
197
name="PICO_TINYUSB_LIB",
@@ -288,3 +294,27 @@ label_flag(
288
294
name="PICO_FREERTOS_LIB",
289
295
build_setting_default="//bazel:empty_cc_lib",
290
296
)
297
+
298
+
# PICO_BAZEL_CONFIG: PICO_MBEDTL_CONFIG, [Bazel only] The cc_library that provides mbedtls_config.h, default=//bazel:empty_cc_lib, group=pico_mbedtls
299
+
label_flag(
300
+
name="PICO_MBEDTLS_CONFIG",
301
+
build_setting_default="//bazel:empty_cc_lib",
302
+
)
303
+
304
+
# PICO_BAZEL_CONFIG: PICO_COMPILATION_NO_OPT_ARGS, Makes the opt compilation mode a no-op so custom optimization arguments can be injected via the --copt flag instead, type=bool, default=0, group=build
305
+
bool_flag(
306
+
name="PICO_COMPILATION_NO_OPT_ARGS",
307
+
build_setting_default=False,
308
+
)
309
+
310
+
# PICO_BAZEL_CONFIG: PICO_COMPILATION_NO_DEBUG_ARGS, Makes the debug compilation mode a no-op so custom debug arguments can be injected via the --copt flag instead, type=bool, default=0, group=build
311
+
bool_flag(
312
+
name="PICO_COMPILATION_NO_DEBUG_ARGS",
313
+
build_setting_default=False,
314
+
)
315
+
316
+
# PICO_BAZEL_CONFIG: PICO_COMPILATION_NO_FASTBUILD_ARGS, Makes the fastbuild compilation mode a no-op so custom fastbuild arguments can be injected via the --copt flag instead, type=bool, default=0, group=build
0 commit comments