26 lines
593 B
CMake
26 lines
593 B
CMake
set(SRCS
|
|
"main.c"
|
|
"utils.c"
|
|
"./modbus/ModbusS.c"
|
|
"./modbus/uart0_modbus_slave.c"
|
|
"./peripheral/led.c"
|
|
"./peripheral/config/fram.c"
|
|
"./peripheral/config/config.c"
|
|
"./peripheral/flow/ads1220.c"
|
|
"./peripheral/flow/input_type2.c"
|
|
"./peripheral/flow/flow.c"
|
|
"./peripheral/bl0939.c"
|
|
"./peripheral/depth.c"
|
|
"./peripheral/depth_.c"
|
|
)
|
|
|
|
set(INCLUDE_DIRS
|
|
"." "./inc"
|
|
"./modbus/inc"
|
|
"./peripheral/inc"
|
|
"./peripheral/flow/inc"
|
|
"./peripheral/config/inc"
|
|
)
|
|
|
|
idf_component_register(SRCS ${SRCS}
|
|
INCLUDE_DIRS ${INCLUDE_DIRS}) |