Source files in sub-folder

Fredckx
Posts: 17
Joined: Mon Mar 29, 2021 8:55 pm

Source files in sub-folder

Postby Fredckx » Fri Nov 26, 2021 11:42 am

Hi, I want to use a component, but have some problems configuring it. I use ESP-IDF 4.2

I placed the files and subfolders into my project/components folder. The componenets header files are in project/components/include and the source files (.cpp) in project/components/src

I have a CMakeLists.txt in project/components

The compiler complains that it cannot find a source file (msg.cpp) so I added:

idf_component_register(
SRCS "msg.cpp"
INCLUDE_DIRS "./src" "include"
)

and variants with and without the ./

What should I do to make the building system discover project/components/src/msg.cpp ?
Do I have to add something in my CMakeLists.txt in the main folder? Or even in the top level?

Or should I add something to my main.cpp?

Thanks
Fred

nopnop2002
Posts: 46
Joined: Thu Oct 03, 2019 10:52 pm

Re: Source files in sub-folder

Postby nopnop2002 » Thu Dec 02, 2021 12:35 am

The ESP-IDF example has some examples using components.


$ find . -name components -print
./provisioning/legacy/custom_config/components
./ethernet/enc28j60/components
./bluetooth/esp_ble_mesh/ble_mesh_coex_test/components
./bluetooth/esp_ble_mesh/aligenie_demo/components
./system/unit_test/components
./system/console/advanced/components
./system/gcov/components
./peripherals/rmt/musical_buzzer/components
./peripherals/rmt/ir_protocols/components
./peripherals/rmt/step_motor/components
./peripherals/spi_master/hd_eeprom/components
./peripherals/pcnt/rotary_encoder/components
./peripherals/gpio/matrix_keyboard/components
./peripherals/secure_element/atecc608_ecdsa/components
./peripherals/mcpwm/mcpwm_brushed_dc_control/components
./storage/custom_flash_driver/components
./build_system/cmake/import_prebuilt/prebuilt/components
./cxx/experimental/esp_mqtt_cxx/components
./protocols/http2_request/components
./protocols/slip/slip_udp/components
./protocols/pppos_client/components

ESP_igrr
Posts: 2067
Joined: Tue Dec 01, 2015 8:37 am

Re: Source files in sub-folder

Postby ESP_igrr » Thu Dec 02, 2021 1:11 pm

It looks like you are missing src/ before the file name. Source file names are relative to the component CMakeLists file:


idf_component_register(
SRCS "src/msg.cpp"
INCLUDE_DIRS "./src" "include"
)

Note that the more standard arrangement is to have the component directory inside components directory of the project, i.e.

Code: Select all

project/
 - components/
   - component1/
       CMakeLists.txt
       (sources, headers)
   - component2/
       CMakeLists.txt
       (sources, headers)

Who is online

Users browsing this forum: Google [Bot] and 60 guests