| Jagpal Singh Gill | 9695bd2 | 2025-10-01 14:38:17 -0700 | [diff] [blame^] | 1 | modbus_rtu_lib = static_library( |
| 2 | 'modbus_rtu_lib', | ||||
| 3 | ['modbus/modbus_commands.cpp', 'modbus/modbus_message.cpp'], | ||||
| 4 | include_directories: ['.'], | ||||
| 5 | dependencies: [default_deps], | ||||
| 6 | ) | ||||
| Jagpal Singh Gill | fa4a787 | 2025-05-20 16:18:06 -0700 | [diff] [blame] | 7 | |
| Jagpal Singh Gill | 9695bd2 | 2025-10-01 14:38:17 -0700 | [diff] [blame^] | 8 | modbus_rtu_dep = declare_dependency( |
| 9 | include_directories: ['.'], | ||||
| 10 | link_with: [modbus_rtu_lib], | ||||
| 11 | dependencies: [default_deps], | ||||
| 12 | ) | ||||