Search found 1 match

by jendo42
Mon Jul 03, 2023 11:17 am
Forum: ESP-IDF
Topic: Disabling -Werror=all
Replies: 0
Views: 663

Disabling -Werror=all

How can I disable -Werror=all for esp-idf v5.1? I tried this project(xyz) idf_build_set_property( COMPILE_OPTIONS "-Wno-error" APPEND ) or this add_compile_options( -Wno-error ) include($ENV{IDF_PATH}/tools/cmake/project.cmake) project(xyz) but it does not work and it's really anoying because can't ...