2018-06-28 15:45:41 +00:00
|
|
|
# The following five lines of boilerplate have to be in your project's
|
|
|
|
# CMakeLists in this exact order for cmake to work correctly
|
2019-06-21 06:29:32 +00:00
|
|
|
set(srcs
|
|
|
|
"common/esp_modbus_master.c"
|
2019-04-28 07:38:23 +00:00
|
|
|
"common/esp_modbus_slave.c"
|
|
|
|
"modbus/mb.c"
|
|
|
|
"modbus/mb_m.c"
|
|
|
|
"modbus/ascii/mbascii.c"
|
|
|
|
"modbus/rtu/mbrtu_m.c"
|
|
|
|
"modbus/rtu/mbrtu.c"
|
|
|
|
"modbus/rtu/mbcrc.c"
|
|
|
|
"modbus/tcp/mbtcp.c"
|
|
|
|
"port/port.c"
|
|
|
|
"port/portevent.c"
|
|
|
|
"port/portevent_m.c"
|
|
|
|
"port/portother.c"
|
|
|
|
"port/portother_m.c"
|
|
|
|
"port/portserial.c"
|
|
|
|
"port/portserial_m.c"
|
|
|
|
"port/porttimer.c"
|
|
|
|
"port/porttimer_m.c"
|
|
|
|
"modbus/functions/mbfunccoils.c"
|
|
|
|
"modbus/functions/mbfunccoils_m.c"
|
|
|
|
"modbus/functions/mbfuncdiag.c"
|
|
|
|
"modbus/functions/mbfuncdisc.c"
|
|
|
|
"modbus/functions/mbfuncdisc_m.c"
|
|
|
|
"modbus/functions/mbfuncholding.c"
|
|
|
|
"modbus/functions/mbfuncholding_m.c"
|
|
|
|
"modbus/functions/mbfuncinput.c"
|
|
|
|
"modbus/functions/mbfuncinput_m.c"
|
|
|
|
"modbus/functions/mbfuncother.c"
|
|
|
|
"modbus/functions/mbutils.c"
|
|
|
|
"serial_slave/modbus_controller/mbc_serial_slave.c"
|
|
|
|
"serial_master/modbus_controller/mbc_serial_master.c")
|
|
|
|
set(include_dirs common/include)
|
|
|
|
set(priv_include_dirs common port modbus modbus/ascii modbus/functions
|
2018-10-19 13:51:27 +00:00
|
|
|
modbus/rtu modbus/tcp modbus/include)
|
2019-04-28 07:38:23 +00:00
|
|
|
list(APPEND priv_include_dirs serial_slave/port serial_slave/modbus_controller
|
2018-10-19 13:51:27 +00:00
|
|
|
serial_master/port serial_master/modbus_controller)
|
2018-06-28 15:45:41 +00:00
|
|
|
|
2019-04-28 07:38:23 +00:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
|
|
INCLUDE_DIRS "${include_dirs}"
|
|
|
|
PRIV_INCLUDE_DIRS "${priv_include_dirs}"
|
|
|
|
REQUIRES driver)
|