Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Eliminate dash character in D-Bus iface file names
Pre-step to introduce use of DBUS_INTERFACES qmake variable. With dash in
name, it would generate invalid include guards.
  • Loading branch information
martyone committed Apr 26, 2013
1 parent b811a1c commit fd7e535
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
20 changes: 10 additions & 10 deletions libconnman-qt/libconnman-qt.pro
Expand Up @@ -11,10 +11,10 @@ isEmpty(PREFIX) {
PREFIX=/usr
}

#system(qdbusxml2cpp -c Manager -p manager -N connman-manager.xml)
system(qdbusxml2cpp -c Service -p service -N connman-service.xml)
system(qdbusxml2cpp -c Technology -p technology -N connman-technology.xml)
#system(qdbusxml2cpp -c Session -p session -N connman-session.xml)
#system(qdbusxml2cpp -c Manager -p manager -N connman_manager.xml)
system(qdbusxml2cpp -c Service -p service -N connman_service.xml)
system(qdbusxml2cpp -c Technology -p technology -N connman_technology.xml)
#system(qdbusxml2cpp -c Session -p session -N connman_session.xml)

HEADERS += manager.h \
service.h \
Expand Down Expand Up @@ -62,9 +62,9 @@ pkgconfig.files = connman-qt4.pc

INSTALLS += target headers pkgconfig

OTHER_FILES = connman-service.xml \
connman-technology.xml \
connman-clock.xml \
connman-manager.xml \
connman-session.xml \
connman-notification.xml
OTHER_FILES = connman_service.xml \
connman_technology.xml \
connman_clock.xml \
connman_manager.xml \
connman_session.xml \
connman_notification.xml

0 comments on commit fd7e535

Please sign in to comment.