sync.profile 1.1 KB

123456789101112131415161718192021222324252627
  1. %modules = ( # path to module name map
  2. "QtBluetooth" => "$basedir/src/bluetooth",
  3. "QtNfc" => "$basedir/src/nfc",
  4. );
  5. %moduleheaders = ( # restrict the module headers to those found in relative path
  6. );
  7. %deprecatedheaders = (
  8. "QtBluetooth" => {
  9. "qbluetoothglobal.h" => "QtBluetooth/qtbluetoothglobal.h"
  10. },
  11. "QtNfc" => {
  12. "qnfcglobal.h" => "QtNfc/qtnfcglobal.h"
  13. }
  14. );
  15. @ignore_for_include_check = (
  16. # BlueZ & OBEX auto-generated headers
  17. "adapter1_bluez5_p.h", "adapter_p.h", "agent_p.h", "device1_bluez5_p.h",
  18. "device_p.h", "manager_p.h", "obex_agent_p.h", "obex_client1_bluez5_p.h",
  19. "obex_client_p.h", "obex_manager_p.h", "obex_objectpush1_bluez5_p.h",
  20. "obex_transfer1_bluez5_p.h", "obex_transfer_p.h", "objectmanager_p.h",
  21. "profile1_p.h", "properties_p.h", "service_p.h", "gattchar1_p.h",
  22. "gattdesc1_p.h", "gattservice1_p.h", "profilemanager1_p.h", "battery1_p.h",
  23. # NFC auto-generated headers
  24. # Note: "adapter_p.h", "agent_p.h" and "manager_p.h" are duplicated here
  25. "dbusobjectmanager_p.h", "dbusproperties_p.h", "tag_p.h");