Initially, my project structure looked like this:
Code: Select all
Project
├── MyLibs/
│ ├── rol.h
│ ├── web.h
│ ├── APImain.h
├── second/
│ ├── Rol/
│ │ ├── roles.c
│ │ └── CMakeLists.txt
│ └── API/
│ ├── APImain.c
│ └── CMakeLists.txt
├── main/
│ ├── main.c
│ └── CMakeLists.txt
└── CMakeLists.txt
Code: Select all
Project
├── MyLibs/
│ ├── cURL/
│ │ ├── include/
│ │ │ ├── curl/
│ │ │ │ ├── curl.h
│ │ │ │ └── ...
│ │ │ ├── lib/
│ │ │ │ ├── libcurl.a
│ │ │ │ └── ...
│ │ │ └── ...
│ │ └── ...
│ ├── rol.h
│ ├── web.h
│ ├── APImain.h
├── second/
│ ├── Rol/
│ │ ├── roles.c
│ │ └── CMakeLists.txt
│ └── API/
│ ├── APImain.c
│ └── CMakeLists.txt
├── main/
│ ├── main.c
│ └── CMakeLists.txt
└── CMakeLists.txt
undefined reference to 'curl_easy_init'
undefined reference to 'curl_easy_setopt'
These are some examples, in my APImain.c file I have this:
Code: Select all
#include "cURL/include/curl/curl.h"
Code: Select all
c:/users/luis_/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/ld.exe: esp-idf/main/libmain.a(APImain.c.obj):(.literal.POSTdata+0x3c): undefined reference to `curl_easy_init'