mirror of
https://github.com/espressif/esp-idf.git
synced 2025-12-26 05:09:19 +00:00
Add two project components, component1 and component2, and verify that their real targets are created when they are included. Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
14 lines
243 B
C
14 lines
243 B
C
/*
|
|
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#include <stdio.h>
|
|
#include "component1.h"
|
|
|
|
void component2_func(void)
|
|
{
|
|
component1_func();
|
|
printf("component2\n");
|
|
}
|