From 12c6a8cb5437dce6b69e94ce956cecc2e224246f Mon Sep 17 00:00:00 2001 From: yuuu Date: Sun, 29 Jan 2023 15:59:23 +0900 Subject: [PATCH] Add files to ignore in .gitignore --- .gitignore | 7 +++++++ components/mruby_component/CMakeLists.txt | 1 + 2 files changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index f1c8847..803584d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,11 @@ build/ sdkconfig.old + main/main_mrb.h +main/spiffs/*.pem +main/spiffs/*.pem.key +main/spiffs/*.pem.crt + components/mruby_component/esp32_build_config.rb.lock + +.vscode diff --git a/components/mruby_component/CMakeLists.txt b/components/mruby_component/CMakeLists.txt index 496bbe4..38f583a 100644 --- a/components/mruby_component/CMakeLists.txt +++ b/components/mruby_component/CMakeLists.txt @@ -11,6 +11,7 @@ add_custom_command( OUTPUT ${LIBMRUBY_FILE} COMMAND ${CMAKE_COMMAND} -E env "MRUBY_CONFIG=${MRUBY_CONFIG}" "CC=${CMAKE_C_COMPILER}" "LD=${CMAKE_LINKER}" "AR=${CMAKE_AR}" "COMPONENT_INCLUDES=$" rake WORKING_DIRECTORY ${MRUBY_DIR} + BYPRODUCTS ${COMPONENT_DIR}/esp32_build_config.rb.lock VERBATIM )