Search found 2 matches

by MatzeM
Tue Jul 28, 2020 11:26 am
Forum: ESP-IDF
Topic: C++ headers not found
Replies: 1
Views: 2547

Re: C++ headers not found

In the meantime I went a step further - but it's still not solved. I now have the following directory structure inside my project dir: include main MyWifi My CMakeLists.txt in the base project dir looks like follows: cmake_minimum_required( VERSION 3.10 ) set( CMAKE_C_STANDARD 11 ) set( CMAKE_CXX_ST...
by MatzeM
Thu Jul 23, 2020 8:36 am
Forum: ESP-IDF
Topic: C++ headers not found
Replies: 1
Views: 2547

C++ headers not found

I'm fairly new to ESP32 programming - so please forgive if it's a absolut beginners question... I try to program ESP32 code with esp-idf v4.0.1 and C++ classes. But it does not find the C++ includes; e.g. I have a MySingleton.h: #ifndef __MYSINGLETON_H__ #define __MYSINGLETON_H__ #include <utility> ...