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