2015-06-01 18:51:55 +02:00
|
|
|
contains(CONFIG, dll) {
|
2015-06-16 11:56:00 +02:00
|
|
|
DEFINES += CLANGBACKENDIPC_BUILD_LIB
|
2015-06-01 18:51:55 +02:00
|
|
|
} else {
|
2015-06-16 11:56:00 +02:00
|
|
|
DEFINES += CLANGBACKENDIPC_BUILD_STATIC_LIB
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QT += network
|
|
|
|
|
|
|
|
|
|
INCLUDEPATH += $$PWD
|
|
|
|
|
|
2016-06-29 16:49:56 +02:00
|
|
|
SOURCES += $$PWD/clangcodemodelserverinterface.cpp \
|
|
|
|
|
$$PWD/clangcodemodelserverproxy.cpp \
|
|
|
|
|
$$PWD/clangcodemodelclientinterface.cpp \
|
2015-08-19 12:36:43 +02:00
|
|
|
$$PWD/cmbendmessage.cpp \
|
|
|
|
|
$$PWD/cmbalivemessage.cpp \
|
2016-06-29 16:49:56 +02:00
|
|
|
$$PWD/clangcodemodelclientproxy.cpp \
|
2015-08-19 12:36:43 +02:00
|
|
|
$$PWD/writemessageblock.cpp \
|
|
|
|
|
$$PWD/readmessageblock.cpp \
|
2015-06-01 18:51:55 +02:00
|
|
|
$$PWD/ipcinterface.cpp \
|
|
|
|
|
$$PWD/connectionserver.cpp \
|
|
|
|
|
$$PWD/connectionclient.cpp \
|
2015-08-19 12:36:43 +02:00
|
|
|
$$PWD/cmbechomessage.cpp \
|
2016-06-29 16:49:56 +02:00
|
|
|
$$PWD/clangcodemodelclientdispatcher.cpp \
|
2015-08-31 14:36:58 +02:00
|
|
|
$$PWD/cmbregistertranslationunitsforeditormessage.cpp \
|
2015-06-01 18:51:55 +02:00
|
|
|
$$PWD/filecontainer.cpp \
|
2015-08-31 14:36:58 +02:00
|
|
|
$$PWD/cmbunregistertranslationunitsforeditormessage.cpp \
|
2015-08-19 12:36:43 +02:00
|
|
|
$$PWD/cmbcompletecodemessage.cpp \
|
|
|
|
|
$$PWD/cmbcodecompletedmessage.cpp \
|
2015-06-01 18:51:55 +02:00
|
|
|
$$PWD/codecompletion.cpp \
|
2015-08-31 14:36:58 +02:00
|
|
|
$$PWD/cmbregisterprojectsforeditormessage.cpp \
|
|
|
|
|
$$PWD/cmbunregisterprojectsforeditormessage.cpp \
|
2015-08-19 12:36:43 +02:00
|
|
|
$$PWD/translationunitdoesnotexistmessage.cpp \
|
2015-06-01 18:51:55 +02:00
|
|
|
$$PWD/codecompletionchunk.cpp \
|
|
|
|
|
$$PWD/projectpartcontainer.cpp \
|
2015-08-19 12:36:43 +02:00
|
|
|
$$PWD/projectpartsdonotexistmessage.cpp \
|
2015-07-14 14:54:01 +02:00
|
|
|
$$PWD/lineprefixer.cpp \
|
2015-08-31 16:28:26 +02:00
|
|
|
$$PWD/clangbackendipcdebugutils.cpp \
|
|
|
|
|
$$PWD/diagnosticschangedmessage.cpp \
|
|
|
|
|
$$PWD/diagnosticcontainer.cpp \
|
|
|
|
|
$$PWD/sourcerangecontainer.cpp \
|
|
|
|
|
$$PWD/sourcelocationcontainer.cpp \
|
|
|
|
|
$$PWD/fixitcontainer.cpp \
|
2015-08-31 16:10:36 +02:00
|
|
|
$$PWD/requestdiagnosticsmessage.cpp \
|
2015-11-18 17:07:44 +01:00
|
|
|
$$PWD/requesthighlightingmessage.cpp \
|
2015-08-31 16:10:36 +02:00
|
|
|
$$PWD/registerunsavedfilesforeditormessage.cpp \
|
2015-10-13 15:56:41 +02:00
|
|
|
$$PWD/unregisterunsavedfilesforeditormessage.cpp \
|
2015-11-25 15:29:28 +01:00
|
|
|
$$PWD/updatetranslationunitsforeditormessage.cpp \
|
2015-11-18 17:07:44 +01:00
|
|
|
$$PWD/updatevisibletranslationunitsmessage.cpp \
|
|
|
|
|
$$PWD/highlightingchangedmessage.cpp \
|
2016-06-27 16:10:16 +02:00
|
|
|
$$PWD/highlightingmarkcontainer.cpp \
|
2016-07-04 14:55:58 +02:00
|
|
|
$$PWD/messageenvelop.cpp \
|
|
|
|
|
$$PWD/ipcclientinterface.cpp \
|
|
|
|
|
$$PWD/ipcserverinterface.cpp \
|
|
|
|
|
$$PWD/clangcodemodelconnectionclient.cpp
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-06-16 11:56:00 +02:00
|
|
|
HEADERS += \
|
2016-06-29 16:49:56 +02:00
|
|
|
$$PWD/clangcodemodelserverinterface.h \
|
|
|
|
|
$$PWD/clangcodemodelserverproxy.h \
|
|
|
|
|
$$PWD/clangcodemodelclientinterface.h \
|
2015-08-19 12:36:43 +02:00
|
|
|
$$PWD/cmbendmessage.h \
|
|
|
|
|
$$PWD/cmbalivemessage.h \
|
2016-06-29 16:49:56 +02:00
|
|
|
$$PWD/clangcodemodelclientproxy.h \
|
2015-08-19 12:36:43 +02:00
|
|
|
$$PWD/writemessageblock.h \
|
|
|
|
|
$$PWD/readmessageblock.h \
|
2015-06-01 18:51:55 +02:00
|
|
|
$$PWD/ipcinterface.h \
|
|
|
|
|
$$PWD/connectionserver.h \
|
|
|
|
|
$$PWD/connectionclient.h \
|
2015-08-19 12:36:43 +02:00
|
|
|
$$PWD/cmbechomessage.h \
|
2016-06-29 16:49:56 +02:00
|
|
|
$$PWD/clangcodemodelclientdispatcher.h \
|
2015-08-31 14:36:58 +02:00
|
|
|
$$PWD/cmbregistertranslationunitsforeditormessage.h \
|
2015-06-01 18:51:55 +02:00
|
|
|
$$PWD/filecontainer.h \
|
2015-08-31 14:36:58 +02:00
|
|
|
$$PWD/cmbunregistertranslationunitsforeditormessage.h \
|
2015-08-19 12:36:43 +02:00
|
|
|
$$PWD/cmbcompletecodemessage.h \
|
|
|
|
|
$$PWD/cmbcodecompletedmessage.h \
|
2015-06-01 18:51:55 +02:00
|
|
|
$$PWD/codecompletion.h \
|
2015-08-31 14:36:58 +02:00
|
|
|
$$PWD/cmbregisterprojectsforeditormessage.h \
|
|
|
|
|
$$PWD/cmbunregisterprojectsforeditormessage.h \
|
2015-08-19 12:36:43 +02:00
|
|
|
$$PWD/translationunitdoesnotexistmessage.h \
|
2015-06-01 18:51:55 +02:00
|
|
|
$$PWD/codecompletionchunk.h \
|
|
|
|
|
$$PWD/projectpartcontainer.h \
|
2015-08-19 12:36:43 +02:00
|
|
|
$$PWD/projectpartsdonotexistmessage.h \
|
2015-06-18 18:08:48 +02:00
|
|
|
$$PWD/clangbackendipc_global.h \
|
2015-07-14 14:54:01 +02:00
|
|
|
$$PWD/lineprefixer.h \
|
2015-08-31 16:28:26 +02:00
|
|
|
$$PWD/clangbackendipcdebugutils.h \
|
|
|
|
|
$$PWD/diagnosticschangedmessage.h \
|
|
|
|
|
$$PWD/diagnosticcontainer.h \
|
|
|
|
|
$$PWD/sourcerangecontainer.h \
|
|
|
|
|
$$PWD/sourcelocationcontainer.h \
|
|
|
|
|
$$PWD/fixitcontainer.h \
|
2015-08-31 16:10:36 +02:00
|
|
|
$$PWD/requestdiagnosticsmessage.h \
|
2015-11-18 17:07:44 +01:00
|
|
|
$$PWD/requesthighlightingmessage.h \
|
2015-08-31 16:10:36 +02:00
|
|
|
$$PWD/registerunsavedfilesforeditormessage.h \
|
2015-10-13 15:56:41 +02:00
|
|
|
$$PWD/unregisterunsavedfilesforeditormessage.h \
|
2015-11-25 15:29:28 +01:00
|
|
|
$$PWD/updatetranslationunitsforeditormessage.h \
|
2015-11-18 17:07:44 +01:00
|
|
|
$$PWD/updatevisibletranslationunitsmessage.h \
|
|
|
|
|
$$PWD/highlightingchangedmessage.h \
|
2016-02-08 13:23:28 +01:00
|
|
|
$$PWD/highlightingmarkcontainer.h \
|
2016-07-04 14:55:58 +02:00
|
|
|
$$PWD/messageenvelop.h \
|
|
|
|
|
$$PWD/ipcclientinterface.h \
|
|
|
|
|
$$PWD/ipcserverinterface.h \
|
|
|
|
|
$$PWD/clangcodemodelconnectionclient.h
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
|
contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
|