X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2FCMakeLists.txt;h=70c0a55bb830652f407cc91c116144a38331d18a;hp=c247eb3491eea6f0237eee008485c9a5ebffd321;hb=97675557b12cae69bc19febe1ddd147ddfafebdb;hpb=04315f46a16fc3627218377071e008b6b9744992 diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index c247eb34..70c0a55b 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -4,6 +4,7 @@ setup_qt_variables(Core Network) set(SOURCES aliasmanager.cpp + authhandler.cpp backlogmanager.cpp basichandler.cpp bufferinfo.cpp @@ -11,6 +12,7 @@ set(SOURCES bufferviewconfig.cpp bufferviewmanager.cpp cliparser.cpp + compressor.cpp coreinfo.cpp ctcpevent.cpp event.cpp @@ -28,23 +30,32 @@ set(SOURCES network.cpp networkconfig.cpp networkevent.cpp + peer.cpp + peerfactory.cpp quassel.cpp remotepeer.cpp settings.cpp signalproxy.cpp syncableobject.cpp + transfer.cpp + transfermanager.cpp util.cpp + protocols/datastream/datastreampeer.cpp protocols/legacy/legacypeer.cpp + + ../../3rdparty/miniz/miniz.c ) set(MOC_HDRS aliasmanager.h + authhandler.h backlogmanager.h basichandler.h buffersyncer.h bufferviewconfig.h bufferviewmanager.h + compressor.h coreinfo.h eventmanager.h identity.h @@ -55,11 +66,15 @@ set(MOC_HDRS ircuser.h network.h networkconfig.h + peer.h remotepeer.h settings.h signalproxy.h syncableobject.h + transfer.h + transfermanager.h + protocols/datastream/datastreampeer.h protocols/legacy/legacypeer.h ) @@ -74,6 +89,7 @@ set(HEADERS ${MOC_HDRS} networkevent.h logger.h message.h + peerfactory.h protocol.h types.h util.h) @@ -95,7 +111,7 @@ if(CMAKE_HOST_UNIX) set(SOURCES ${SOURCES} logbacktrace_unix.cpp) endif(CMAKE_HOST_UNIX) -include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR} ${QUASSEL_QT_INCLUDES}) # for version.inc and version.gen +include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR} ${QUASSEL_QT_INCLUDES}) # for version.inc and version.gen if(NOT WITH_QT5) qt4_wrap_cpp(MOC ${MOC_HDRS})