summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.json5
-rw-r--r--src/serialbus/configure.json60
2 files changed, 0 insertions, 65 deletions
diff --git a/configure.json b/configure.json
deleted file mode 100644
index c43610f..0000000
--- a/configure.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "subconfigs": [
- "src/serialbus"
- ]
-}
diff --git a/src/serialbus/configure.json b/src/serialbus/configure.json
deleted file mode 100644
index 15d4863..0000000
--- a/src/serialbus/configure.json
+++ /dev/null
@@ -1,60 +0,0 @@
-{
- "module": "serialbus",
- "testDir": "../../config.tests",
-
- "tests": {
- "socketcan": {
- "label": "Socket CAN",
- "type": "compile",
- "test": "socketcan"
- },
- "socketcan_fd": {
- "label": "Socket CAN FD",
- "type": "compile",
- "test": "socketcan_fd"
- }
- },
-
- "features": {
- "socketcan": {
- "label": "Socket CAN",
- "condition": "config.linux && tests.socketcan",
- "output": [ "privateFeature" ]
- },
- "socketcan_fd": {
- "label": "Socket CAN FD",
- "condition": "config.linux && features.socketcan && tests.socketcan_fd",
- "output": [ "privateFeature"]
- },
- "modbus-serialport" : {
- "label": "SerialPort Support",
- "condition": "module.serialport",
- "purpose": "Enables Serial-based Modbus Support",
- "output": [ "publicFeature"]
- }
- },
-
- "report": [
- {
- "type": "note",
- "condition": "config.linux && !features.socketcan",
- "message": "QtSerialBus: Cannot find linux/can.h and linux/can/raw.h Linux headers for socketCAN support."
- },
- {
- "type": "note",
- "condition": "config.linux && features.socketcan && !features.socketcan_fd",
- "message": "QtSerialBus: Newer kernel needed for flexible data-rate frame support (canfd_frame)."
- }
- ],
-
- "summary": [
- {
- "section": "Qt SerialBus",
- "entries": [
- "socketcan",
- "socketcan_fd",
- "modbus-serialport"
- ]
- }
- ]
-}