diff options
-rw-r--r-- | src/remoteobjects/remoteobjects.pro | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/remoteobjects/remoteobjects.pro b/src/remoteobjects/remoteobjects.pro index eb28785..4a3593a 100644 --- a/src/remoteobjects/remoteobjects.pro +++ b/src/remoteobjects/remoteobjects.pro @@ -80,7 +80,12 @@ qnx { qconnection_qnx_server_p.h \ qconnection_qnx_global_p.h \ - contains(DEFINES , USE_HAM): LIBS += -lham + contains(DEFINES , USE_HAM) { + LIBS += -lham + message(configured for using HAM) + } else { + message(configured without using HAM) + } } HEADERS += $$PUBLIC_HEADERS $$PRIVATE_HEADERS |